Home
last modified time | relevance | path

Searched full:getcore (Results 1 – 4 of 4) sorted by relevance

/titanic_53/usr/src/lib/libc/port/gen/
H A Dmalloc.c37 * non-contiguous across calls of GETCORE's.
38 * GETCORE: a function to get more core memory. If not SEGMENTED,
39 * GETCORE(0) is assumed to return the next available
41 * ERRCORE: the error code as returned by GETCORE.
44 * with GETCORE. Default is (1024*ALIGN).
382 if (size > SIZE(tp) && BOTTOM(tp) && GETCORE(0) == Baddr) { in realloc()
611 addr = GETCORE(0); in _morecore()
635 /* check if nsize request could overflow in GETCORE */ in _morecore()
642 if (GETCORE(nsize) == ERRCORE) in _morecore()
647 * the value required is too big for GETCORE() to deal with in _morecore()
[all …]
H A Dmallint.h164 #define GETCORE sbrk macro
171 extern void *GETCORE(ssize_t);
/titanic_53/usr/src/lib/watchmalloc/common/
H A Dmalloc.c36 * GETCORE: a function to get more core memory.
37 * GETCORE(0) is assumed to return the next available
39 * ERRCORE: the error code as returned by GETCORE.
42 * with GETCORE. Default is (1024*ALIGN).
369 if (size > SIZE(tp) && BOTTOM(tp) && GETCORE(0) == Baddr) { in realloc()
644 addr = GETCORE(0); in morecore()
647 /* errno set by GETCORE sbrk */ in morecore()
670 /* check if nsize request could overflow in GETCORE */ in morecore()
681 * the value required is too big for GETCORE() to deal with in morecore()
682 * in one go, so use GETCORE() at most 2 times instead. in morecore()
[all …]
H A Dmallint.h134 #define GETCORE sbrk macro