Rev 4557 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4557 | Rev 4621 | ||
|---|---|---|---|
| Line 52... | Line 52... | ||
| 52 | #include <fibril_sync.h> |
52 | #include <fibril_sync.h> |
| 53 | #include <devmap.h> |
53 | #include <devmap.h> |
| 54 | #include <sys/types.h> |
54 | #include <sys/types.h> |
| 55 | #include <errno.h> |
55 | #include <errno.h> |
| 56 | #include <bool.h> |
56 | #include <bool.h> |
| - | 57 | #include <task.h> |
|
| 57 | 58 | ||
| 58 | #include "ata_bd.h" |
59 | #include "ata_bd.h" |
| 59 | 60 | ||
| 60 | #define NAME "ata_bd" |
61 | #define NAME "ata_bd" |
| 61 | 62 | ||
| Line 133... | Line 134... | ||
| 133 | printf("No disks detected.\n"); |
134 | printf("No disks detected.\n"); |
| 134 | return -1; |
135 | return -1; |
| 135 | } |
136 | } |
| 136 | 137 | ||
| 137 | printf(NAME ": Accepting connections\n"); |
138 | printf(NAME ": Accepting connections\n"); |
| - | 139 | task_retval(0); |
|
| 138 | async_manager(); |
140 | async_manager(); |
| 139 | 141 | ||
| 140 | /* Not reached */ |
142 | /* Not reached */ |
| 141 | return 0; |
143 | return 0; |
| 142 | } |
144 | } |