Rev 4557 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4557 | Rev 4621 | ||
|---|---|---|---|
| Line 44... | Line 44... | ||
| 44 | #include <as.h> |
44 | #include <as.h> |
| 45 | #include <fibril_sync.h> |
45 | #include <fibril_sync.h> |
| 46 | #include <devmap.h> |
46 | #include <devmap.h> |
| 47 | #include <sys/types.h> |
47 | #include <sys/types.h> |
| 48 | #include <errno.h> |
48 | #include <errno.h> |
| - | 49 | #include <task.h> |
|
| 49 | 50 | ||
| 50 | #define NAME "gxe_bd" |
51 | #define NAME "gxe_bd" |
| 51 | 52 | ||
| 52 | enum { |
53 | enum { |
| 53 | CTL_READ_START = 0, |
54 | CTL_READ_START = 0, |
| Line 108... | Line 109... | ||
| 108 | 109 | ||
| 109 | if (gxe_bd_init() != EOK) |
110 | if (gxe_bd_init() != EOK) |
| 110 | return -1; |
111 | return -1; |
| 111 | 112 | ||
| 112 | printf(NAME ": Accepting connections\n"); |
113 | printf(NAME ": Accepting connections\n"); |
| - | 114 | task_retval(0); |
|
| 113 | async_manager(); |
115 | async_manager(); |
| 114 | 116 | ||
| 115 | /* Not reached */ |
117 | /* Not reached */ |
| 116 | return 0; |
118 | return 0; |
| 117 | } |
119 | } |