Changeset 59ecd4a3 in mainline for uspace/srv/net/netstart/self_test.h
- Timestamp:
- 2010-04-04T21:41:47Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5db9084
- Parents:
- 36a75a2 (diff), ee7e82a9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netstart/self_test.h
r36a75a2 r59ecd4a3 28 28 29 29 /** @addtogroup net 30 * @{ 31 */ 32 33 /** @file 34 * Self tests. 35 * @see configuration.h 30 * @{ 36 31 */ 37 32 … … 39 34 #define __SELF_TEST_H__ 40 35 41 #include "configuration.h" 42 43 /** Self test start function. 44 * Runs all the configured self tests. 45 * @see configuration.h 46 * @returns EOK on success. 47 * @returns The first error occurred. 48 */ 49 #if NET_SELF_TEST 50 51 int self_test(void); 52 53 #else 54 55 #include <errno.h> 56 57 #define self_test() EOK 58 59 #endif 36 extern int self_test(void); 60 37 61 38 #endif
Note:
See TracChangeset
for help on using the changeset viewer.