Rev 4557 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4557 | Rev 4621 | ||
---|---|---|---|
Line 47... | Line 47... | ||
47 | #include <fibril_sync.h> |
47 | #include <fibril_sync.h> |
48 | #include <devmap.h> |
48 | #include <devmap.h> |
49 | #include <sys/types.h> |
49 | #include <sys/types.h> |
50 | #include <errno.h> |
50 | #include <errno.h> |
51 | #include <bool.h> |
51 | #include <bool.h> |
- | 52 | #include <task.h> |
|
52 | 53 | ||
53 | #define NAME "file_bd" |
54 | #define NAME "file_bd" |
54 | 55 | ||
55 | static size_t comm_size; |
56 | static size_t comm_size; |
56 | static FILE *img; |
57 | static FILE *img; |
Line 84... | Line 85... | ||
84 | argv[2]); |
85 | argv[2]); |
85 | return rc; |
86 | return rc; |
86 | } |
87 | } |
87 | 88 | ||
88 | printf(NAME ": Accepting connections\n"); |
89 | printf(NAME ": Accepting connections\n"); |
- | 90 | task_retval(0); |
|
89 | async_manager(); |
91 | async_manager(); |
90 | 92 | ||
91 | /* Not reached */ |
93 | /* Not reached */ |
92 | return 0; |
94 | return 0; |
93 | } |
95 | } |