Changeset 79522a7 in mainline


Ignore:
Timestamp:
2006-03-14T14:11:00Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7ad3c2f
Parents:
18acad5
Message:

Add mremap() syscall.

Location:
libc
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • libc/Makefile

    r18acad5 r79522a7  
    4242GENERIC_SOURCES = \
    4343        generic/libc.c \
     44        generic/mmap.c \
    4445        generic/io/io.c \
    4546        generic/io/print.c
  • libc/include/unistd.h

    r18acad5 r79522a7  
    3636extern ssize_t write(int fd, const void * buf, size_t count);
    3737extern void _exit(int status);
     38void * mremap(void *address, size_t size, unsigned long flags);
    3839
    3940#endif
Note: See TracChangeset for help on using the changeset viewer.