Changeset 319e60e in mainline for kernel/test/test.h
- Timestamp:
- 2006-12-11T18:33:53Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 50661ab
- Parents:
- 134877d
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/test.h
r134877d r319e60e 1 1 /* 2 * Copyright (C) 200 1-2004 Jakub Jermar2 * Copyright (C) 2006 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup generic29 /** @addtogroup test 30 30 * @{ 31 31 */ … … 36 36 #define KERN_TEST_H_ 37 37 38 extern void test(void); 38 #include <arch/types.h> 39 #include <typedefs.h> 40 41 typedef struct { 42 char * name; 43 char * desc; 44 function entry; 45 } test_t; 46 47 extern void test_atomic1(void); 48 49 extern test_t tests[]; 39 50 40 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.