Rev 4743 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4743 | Rev 4756 | ||
---|---|---|---|
Line 52... | Line 52... | ||
52 | /** Networking startup module name. |
52 | /** Networking startup module name. |
53 | */ |
53 | */ |
54 | #define NAME "Networking startup" |
54 | #define NAME "Networking startup" |
55 | 55 | ||
56 | /** Module entry point. |
56 | /** Module entry point. |
57 | * @param argc The number of command line parameters. Input parameter. |
57 | * @param[in] argc The number of command line parameters. |
58 | * @param argv The command line parameters. Input parameter. |
58 | * @param[in] argv The command line parameters. |
59 | * @returns EOK on success. |
59 | * @returns EOK on success. |
60 | * @returns EINVAL if the net module cannot be started. |
60 | * @returns EINVAL if the net module cannot be started. |
61 | * @returns Other error codes as defined for the self_test() function. |
61 | * @returns Other error codes as defined for the self_test() function. |
62 | * @returns Other error codes as defined for the NET_NET_STARTUP message. |
62 | * @returns Other error codes as defined for the NET_NET_STARTUP message. |
63 | */ |
63 | */ |
64 | int main( int argc, char * argv[] ); |
64 | int main( int argc, char * argv[] ); |
65 | 65 | ||
66 | /** Starts the module. |
66 | /** Starts the module. |
67 | * @param fname The module absolute name. Input parameter. |
67 | * @param[in] fname The module absolute name. |
68 | * @returns The started module task identifier. |
68 | * @returns The started module task identifier. |
69 | * @returns Other error codes as defined for the task_spawn() function. |
69 | * @returns Other error codes as defined for the task_spawn() function. |
70 | */ |
70 | */ |
71 | task_id_t spawn( char * fname ); |
71 | task_id_t spawn( char * fname ); |
72 | 72 |