Changeset d9fae235 in mainline for uspace/lib/c/include
- Timestamp:
- 2010-04-17T01:28:38Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9d6bfa5
- Parents:
- 9256ad29
- Location:
- uspace/lib/c/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sysinfo.h
r9256ad29 rd9fae235 31 31 */ 32 32 /** @file 33 */ 33 */ 34 34 35 35 #ifndef LIBC_SYSINFO_H_ … … 37 37 38 38 #include <libc.h> 39 #include <sysinfo.h>40 #include <str.h>41 39 42 sysarg_t sysinfo_value(const char *name); 40 typedef enum { 41 SYSINFO_VAL_UNDEFINED = 0, 42 SYSINFO_VAL_VAL = 1, 43 SYSINFO_VAL_DATA = 2 44 } sysinfo_item_tag_t; 45 46 extern sysinfo_item_tag_t sysinfo_get_tag(const char *); 47 extern int sysinfo_get_value(const char *, sysarg_t *); 48 extern void *sysinfo_get_data(const char *, size_t *); 43 49 44 50 #endif -
uspace/lib/c/include/task.h
r9256ad29 rd9fae235 46 46 47 47 extern task_id_t task_get_id(void); 48 extern int task_set_name(const char *name); 49 extern task_id_t task_spawn(const char *path, const char *const argv[]); 50 extern int task_wait(task_id_t id, task_exit_t *texit, int *retval); 51 extern int task_retval(int val); 52 48 extern int task_set_name(const char *); 49 extern task_id_t task_spawn(const char *, const char *const[], int *); 50 extern int task_wait(task_id_t id, task_exit_t *, int *); 51 extern int task_retval(int); 53 52 54 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
