Changeset c98e6ee in mainline for uspace/lib/libc/include


Ignore:
Timestamp:
2008-07-08T16:05:45Z (17 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f93f168
Parents:
b7f9087
Message:

Merge program-loader related stuff from dynload branch to trunk. (huge)

Location:
uspace/lib/libc/include
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/include/as.h

    rb7f9087 rc98e6ee  
    4343extern void *as_area_create(void *address, size_t size, int flags);
    4444extern int as_area_resize(void *address, size_t size, int flags);
     45extern int as_area_change_flags(void *address, int flags);
    4546extern int as_area_destroy(void *address);
    4647extern void *set_maxheapsize(size_t mhs);
  • uspace/lib/libc/include/io/stream.h

    rb7f9087 rc98e6ee  
    4141
    4242extern void open_console(void);
     43extern void close_console(void);
    4344extern void klog_update(void);
    4445
  • uspace/lib/libc/include/libc.h

    rb7f9087 rc98e6ee  
    4949    __syscall(p1, p2, p3, p4, p5, p6,id)
    5050
    51 extern void __main(void);
     51extern void __main(void *pcb_ptr);
    5252extern void __exit(void);
    5353
  • uspace/lib/libc/include/task.h

    rb7f9087 rc98e6ee  
    4141
    4242extern task_id_t task_get_id(void);
    43 extern int task_spawn(void *image, size_t size);
     43extern task_id_t task_spawn(const char *path, const char *argv[]);
    4444
    4545#endif
Note: See TracChangeset for help on using the changeset viewer.