Changeset d2d0baf in mainline for uspace/srv/fs/fat/fat.c


Ignore:
Timestamp:
2007-09-19T20:38:12Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6675c70
Parents:
47a776f9
Message:

No need to call async_manager() at the end of fat.c's main().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat.c

    r47a776f9 rd2d0baf  
    120120        async_wait_for(req, NULL);
    121121        dprintf("FAT filesystem registered.\n");
    122         async_manager();
     122
     123        /*
     124         * TODO: Interestingly, if we return, the only thread dies.
     125         *       If the only thread dies, the whole task is destroyed.
     126         *       Prevent the thread from exiting when there are active fibrils.
     127         */
     128        while(1)
     129                usleep(1000000);
     130       
    123131        return 0;
    124132}
Note: See TracChangeset for help on using the changeset viewer.