Changeset 3815a2b in rtems
- Timestamp:
- 10/18/00 15:02:06 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8e13ca61
- Parents:
- b541e1f
- Files:
-
- 3 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/include/rtems/libcsupport.h
rb541e1f r3815a2b 34 34 extern int host_errno(void); 35 35 extern void fix_syscall_errno(void); 36 extern size_t malloc_free_space(); 36 37 37 38 #ifdef __cplusplus -
c/src/exec/libcsupport/src/Makefile.am
rb541e1f r3815a2b 38 38 scandir.c seekdir.c telldir.c getcwd.c 39 39 40 MALLOC_C_FILES = malloc.c __brk.c __sbrk.c40 MALLOC_C_FILES = malloc.c mallocfreespace.c __brk.c __sbrk.c 41 41 42 42 PASSWORD_GROUP_C_FILES = getpwent.c getgrent.c -
c/src/lib/ChangeLog
rb541e1f r3815a2b 1 2 2000-10-18 Joel Sherrill <joel@OARcorp.com> 3 4 * libc/Makefile.am: Added mallocfreespace.c. 5 * libc/mallocfreespace.c: New file based on work by Nick Simon 6 <Nick.SIMON@syntegra.bt.co.uk> which he included in malloc.c. 7 * libc/libcsupport.h: Added prototype for malloc_free_space(). 1 8 2 9 2000-10-18 Joel Sherrill <joel@OARcorp.com> -
c/src/lib/include/rtems/libcsupport.h
rb541e1f r3815a2b 34 34 extern int host_errno(void); 35 35 extern void fix_syscall_errno(void); 36 extern size_t malloc_free_space(); 36 37 37 38 #ifdef __cplusplus -
c/src/lib/libc/Makefile.am
rb541e1f r3815a2b 38 38 scandir.c seekdir.c telldir.c getcwd.c 39 39 40 MALLOC_C_FILES = malloc.c __brk.c __sbrk.c40 MALLOC_C_FILES = malloc.c mallocfreespace.c __brk.c __sbrk.c 41 41 42 42 PASSWORD_GROUP_C_FILES = getpwent.c getgrent.c -
c/src/lib/libc/libcsupport.h
rb541e1f r3815a2b 34 34 extern int host_errno(void); 35 35 extern void fix_syscall_errno(void); 36 extern size_t malloc_free_space(); 36 37 37 38 #ifdef __cplusplus -
cpukit/libcsupport/include/rtems/libcsupport.h
rb541e1f r3815a2b 34 34 extern int host_errno(void); 35 35 extern void fix_syscall_errno(void); 36 extern size_t malloc_free_space(); 36 37 37 38 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.