Changeset c98e6ee in mainline for uspace/lib/libc/include
- Timestamp:
- 2008-07-08T16:05:45Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f93f168
- Parents:
- b7f9087
- Location:
- uspace/lib/libc/include
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/as.h
rb7f9087 rc98e6ee 43 43 extern void *as_area_create(void *address, size_t size, int flags); 44 44 extern int as_area_resize(void *address, size_t size, int flags); 45 extern int as_area_change_flags(void *address, int flags); 45 46 extern int as_area_destroy(void *address); 46 47 extern void *set_maxheapsize(size_t mhs); -
uspace/lib/libc/include/io/stream.h
rb7f9087 rc98e6ee 41 41 42 42 extern void open_console(void); 43 extern void close_console(void); 43 44 extern void klog_update(void); 44 45 -
uspace/lib/libc/include/libc.h
rb7f9087 rc98e6ee 49 49 __syscall(p1, p2, p3, p4, p5, p6,id) 50 50 51 extern void __main(void );51 extern void __main(void *pcb_ptr); 52 52 extern void __exit(void); 53 53 -
uspace/lib/libc/include/task.h
rb7f9087 rc98e6ee 41 41 42 42 extern task_id_t task_get_id(void); 43 extern int task_spawn(void *image, size_t size);43 extern task_id_t task_spawn(const char *path, const char *argv[]); 44 44 45 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.