| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 2013 The Android Open Source Project | 
 | 3 |  * All rights reserved. | 
 | 4 |  * | 
 | 5 |  * Redistribution and use in source and binary forms, with or without | 
 | 6 |  * modification, are permitted provided that the following conditions | 
 | 7 |  * are met: | 
 | 8 |  *  * Redistributions of source code must retain the above copyright | 
 | 9 |  *    notice, this list of conditions and the following disclaimer. | 
 | 10 |  *  * Redistributions in binary form must reproduce the above copyright | 
 | 11 |  *    notice, this list of conditions and the following disclaimer in | 
 | 12 |  *    the documentation and/or other materials provided with the | 
 | 13 |  *    distribution. | 
 | 14 |  * | 
 | 15 |  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
 | 16 |  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
 | 17 |  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
 | 18 |  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
 | 19 |  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
 | 20 |  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
 | 21 |  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
 | 22 |  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
 | 23 |  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
 | 24 |  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
 | 25 |  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
 | 26 |  * SUCH DAMAGE. | 
 | 27 |  */ | 
 | 28 |  | 
| Yabin Cui | 7fb680b | 2015-02-24 13:18:25 -0800 | [diff] [blame] | 29 | // This file perpetuates the mistakes of the past. | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 30 |  | 
| Elliott Hughes | efbdb53 | 2014-04-07 15:17:19 -0700 | [diff] [blame] | 31 | #include <ctype.h> | 
| Elliott Hughes | d1ead2a | 2014-06-06 15:24:20 -0700 | [diff] [blame] | 32 | #include <dirent.h> | 
| Elliott Hughes | 4c5891d | 2015-02-19 22:49:44 -0800 | [diff] [blame] | 33 | #include <errno.h> | 
| Elliott Hughes | efbdb53 | 2014-04-07 15:17:19 -0700 | [diff] [blame] | 34 | #include <inttypes.h> | 
| Calin Juravle | a4eafa6 | 2014-03-10 18:10:04 +0000 | [diff] [blame] | 35 | #include <pthread.h> | 
| Dan Albert | 205dd7d | 2014-06-04 10:14:19 -0700 | [diff] [blame] | 36 | #include <signal.h> | 
| Elliott Hughes | fcac8ff | 2014-05-22 01:24:30 -0700 | [diff] [blame] | 37 | #include <stdio.h> | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 38 | #include <stdlib.h> | 
| David 'Digit' Turner | 891dedb | 2014-06-13 12:28:11 +0200 | [diff] [blame] | 39 | #include <string.h> | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 40 | #include <sys/resource.h> | 
| Elliott Hughes | bd3a98c | 2014-05-24 17:19:36 -0700 | [diff] [blame] | 41 | #include <sys/syscall.h> | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 42 | #include <sys/time.h> | 
 | 43 | #include <sys/types.h> | 
 | 44 | #include <sys/wait.h> | 
 | 45 | #include <unistd.h> | 
| Dan Albert | 001f8f0 | 2014-06-04 09:53:06 -0700 | [diff] [blame] | 46 | #include <wchar.h> | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 47 |  | 
| Yabin Cui | 7fb680b | 2015-02-24 13:18:25 -0800 | [diff] [blame] | 48 | #include "private/libc_logging.h" | 
 | 49 |  | 
 | 50 | // The part is only for 32-bit targets. | 
 | 51 | #if !defined(__LP64__) | 
 | 52 |  | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 53 | // These were accidentally declared in <unistd.h> because we stupidly used to inline | 
 | 54 | // getpagesize() and __getpageshift(). Needed for backwards compatibility with old NDK apps. | 
 | 55 | extern "C" { | 
 | 56 |   unsigned int __page_size = PAGE_SIZE; | 
| Elliott Hughes | 0e44bc3 | 2014-02-24 15:55:31 -0800 | [diff] [blame] | 57 |   unsigned int __page_shift = 12; | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 58 | } | 
 | 59 |  | 
 | 60 | // TODO: remove this backward compatibility hack (for jb-mr1 strace binaries). | 
 | 61 | extern "C" pid_t __wait4(pid_t pid, int* status, int options, struct rusage* rusage) { | 
 | 62 |   return wait4(pid, status, options, rusage); | 
 | 63 | } | 
 | 64 |  | 
| Elliott Hughes | 0620925 | 2013-11-06 16:20:54 -0800 | [diff] [blame] | 65 | // TODO: does anything still need this? | 
| Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 66 | extern "C" int __open() { | 
 | 67 |   abort(); | 
 | 68 | } | 
 | 69 |  | 
| Elliott Hughes | 0620925 | 2013-11-06 16:20:54 -0800 | [diff] [blame] | 70 | // TODO: does anything still need this? | 
 | 71 | extern "C" void** __get_tls() { | 
 | 72 | #include "private/__get_tls.h" | 
 | 73 |   return __get_tls(); | 
 | 74 | } | 
 | 75 |  | 
| Elliott Hughes | 152b9de | 2014-03-10 15:54:40 -0700 | [diff] [blame] | 76 | // This non-standard function was in our <string.h> for some reason. | 
 | 77 | extern "C" void memswap(void* m1, void* m2, size_t n) { | 
 | 78 |   char* p = reinterpret_cast<char*>(m1); | 
 | 79 |   char* p_end = p + n; | 
 | 80 |   char* q = reinterpret_cast<char*>(m2); | 
 | 81 |   while (p < p_end) { | 
 | 82 |     char tmp = *p; | 
 | 83 |     *p = *q; | 
 | 84 |     *q = tmp; | 
 | 85 |     p++; | 
 | 86 |     q++; | 
 | 87 |   } | 
 | 88 | } | 
 | 89 |  | 
| Calin Juravle | a4eafa6 | 2014-03-10 18:10:04 +0000 | [diff] [blame] | 90 | extern "C" int pthread_attr_setstackaddr(pthread_attr_t*, void*) { | 
 | 91 |   // This was removed from POSIX.1-2008, and is not implemented on bionic. | 
 | 92 |   // Needed for ABI compatibility with the NDK. | 
 | 93 |   return ENOSYS; | 
 | 94 | } | 
 | 95 |  | 
 | 96 | extern "C" int pthread_attr_getstackaddr(const pthread_attr_t* attr, void** stack_addr) { | 
 | 97 |   // This was removed from POSIX.1-2008. | 
 | 98 |   // Needed for ABI compatibility with the NDK. | 
 | 99 |   *stack_addr = (char*)attr->stack_base + attr->stack_size; | 
 | 100 |   return 0; | 
 | 101 | } | 
 | 102 |  | 
| Elliott Hughes | efbdb53 | 2014-04-07 15:17:19 -0700 | [diff] [blame] | 103 | // Non-standard cruft that should only ever have been in system/core/toolbox. | 
 | 104 | extern "C" char* strtotimeval(const char* str, struct timeval* ts) { | 
 | 105 |   char* s; | 
 | 106 |   ts->tv_sec = strtoumax(str, &s, 10); | 
 | 107 |  | 
 | 108 |   long fractional_seconds = 0; | 
 | 109 |   if (*s == '.') { | 
 | 110 |     s++; | 
 | 111 |     int count = 0; | 
 | 112 |  | 
 | 113 |     // Read up to 6 digits (microseconds). | 
 | 114 |     while (*s && isdigit(*s)) { | 
 | 115 |       if (++count < 7) { | 
 | 116 |         fractional_seconds = fractional_seconds*10 + (*s - '0'); | 
 | 117 |       } | 
 | 118 |       s++; | 
 | 119 |     } | 
 | 120 |  | 
 | 121 |     for (; count < 6; count++) { | 
 | 122 |       fractional_seconds *= 10; | 
 | 123 |     } | 
 | 124 |   } | 
 | 125 |  | 
 | 126 |   ts->tv_usec = fractional_seconds; | 
 | 127 |   return s; | 
 | 128 | } | 
 | 129 |  | 
| Elliott Hughes | eae5902 | 2014-04-22 17:56:42 -0700 | [diff] [blame] | 130 | static inline int digitval(int ch) { | 
 | 131 |   unsigned d; | 
 | 132 |  | 
 | 133 |   d = (unsigned)(ch - '0'); | 
 | 134 |   if (d < 10) return (int)d; | 
 | 135 |  | 
 | 136 |   d = (unsigned)(ch - 'a'); | 
 | 137 |   if (d < 6) return (int)(d+10); | 
 | 138 |  | 
 | 139 |   d = (unsigned)(ch - 'A'); | 
 | 140 |   if (d < 6) return (int)(d+10); | 
 | 141 |  | 
 | 142 |   return -1; | 
 | 143 | } | 
 | 144 |  | 
 | 145 | // This non-standard function was in our <inttypes.h> for some reason. | 
 | 146 | extern "C" uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n) { | 
 | 147 |   const unsigned char*  p   = (const unsigned char *)nptr; | 
 | 148 |   const unsigned char*  end = p + n; | 
 | 149 |   int                   minus = 0; | 
 | 150 |   uintmax_t             v = 0; | 
 | 151 |   int                   d; | 
 | 152 |  | 
 | 153 |   while (p < end && isspace(*p)) { | 
 | 154 |     p++; | 
 | 155 |   } | 
 | 156 |  | 
 | 157 |   if (p < end) { | 
 | 158 |     char c = p[0]; | 
 | 159 |     if (c == '-' || c == '+') { | 
 | 160 |       minus = (c == '-'); | 
 | 161 |       p++; | 
 | 162 |     } | 
 | 163 |   } | 
 | 164 |  | 
 | 165 |   if (base == 0) { | 
 | 166 |     if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) { | 
 | 167 |       p += 2; | 
 | 168 |       base = 16; | 
 | 169 |     } else if (p+1 < end && p[0] == '0') { | 
 | 170 |       p   += 1; | 
 | 171 |       base = 8; | 
 | 172 |     } else { | 
 | 173 |       base = 10; | 
 | 174 |     } | 
 | 175 |   } else if (base == 16) { | 
 | 176 |     if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) { | 
 | 177 |       p += 2; | 
 | 178 |     } | 
 | 179 |   } | 
 | 180 |  | 
 | 181 |   while (p < end && (d = digitval(*p)) >= 0 && d < base) { | 
 | 182 |     v = v*base + d; | 
 | 183 |     p += 1; | 
 | 184 |   } | 
 | 185 |  | 
 | 186 |   if (endptr) { | 
 | 187 |     *endptr = (char*) p; | 
 | 188 |   } | 
 | 189 |  | 
 | 190 |   return minus ? -v : v; | 
 | 191 | } | 
 | 192 |  | 
 | 193 | // This non-standard function was in our <inttypes.h> for some reason. | 
 | 194 | extern "C" intmax_t strntoimax(const char* nptr, char** endptr, int base, size_t n) { | 
 | 195 |   return (intmax_t) strntoumax(nptr, endptr, base, n); | 
 | 196 | } | 
 | 197 |  | 
| Elliott Hughes | fcac8ff | 2014-05-22 01:24:30 -0700 | [diff] [blame] | 198 | // POSIX calls this dprintf, but LP32 Android had fdprintf instead. | 
 | 199 | extern "C" int fdprintf(int fd, const char* fmt, ...) { | 
 | 200 |   va_list ap; | 
 | 201 |   va_start(ap, fmt); | 
 | 202 |   int rc = vdprintf(fd, fmt, ap); | 
 | 203 |   va_end(ap); | 
 | 204 |   return rc; | 
 | 205 | } | 
 | 206 |  | 
 | 207 | // POSIX calls this vdprintf, but LP32 Android had fdprintf instead. | 
 | 208 | extern "C" int vfdprintf(int fd, const char* fmt, va_list ap) { | 
 | 209 |   return vdprintf(fd, fmt, ap); | 
 | 210 | } | 
 | 211 |  | 
| Elliott Hughes | b30aff4 | 2014-05-28 19:35:33 +0000 | [diff] [blame] | 212 | #define __futex_wake __real_futex_wake | 
 | 213 | #define __futex_wait __real_futex_wait | 
 | 214 | #include "private/bionic_futex.h" | 
 | 215 | #undef __futex_wake | 
 | 216 | #undef __futex_wait | 
| Elliott Hughes | bd3a98c | 2014-05-24 17:19:36 -0700 | [diff] [blame] | 217 |  | 
 | 218 | // This used to be in <sys/atomics.h>. | 
 | 219 | extern "C" int __futex_wake(volatile void* ftx, int count) { | 
| Elliott Hughes | b30aff4 | 2014-05-28 19:35:33 +0000 | [diff] [blame] | 220 |   return __real_futex_wake(ftx, count); | 
| Elliott Hughes | bd3a98c | 2014-05-24 17:19:36 -0700 | [diff] [blame] | 221 | } | 
 | 222 |  | 
 | 223 | // This used to be in <sys/atomics.h>. | 
 | 224 | extern "C" int __futex_wait(volatile void* ftx, int value, const struct timespec* timeout) { | 
| Elliott Hughes | b30aff4 | 2014-05-28 19:35:33 +0000 | [diff] [blame] | 225 |   return __real_futex_wait(ftx, value, timeout); | 
| Elliott Hughes | bd3a98c | 2014-05-24 17:19:36 -0700 | [diff] [blame] | 226 | } | 
 | 227 |  | 
| Anthony King | 0017073 | 2014-05-24 16:47:14 +0000 | [diff] [blame] | 228 | // Unity's libmono uses this. | 
 | 229 | extern "C" int tkill(pid_t tid, int sig) { | 
 | 230 |   return syscall(__NR_tkill, tid, sig); | 
 | 231 | } | 
 | 232 |  | 
| Elliott Hughes | 1628eb1 | 2014-08-06 10:47:33 -0700 | [diff] [blame] | 233 | // This was removed from POSIX 2008. | 
| Dan Albert | 001f8f0 | 2014-06-04 09:53:06 -0700 | [diff] [blame] | 234 | extern "C" wchar_t* wcswcs(wchar_t* haystack, wchar_t* needle) { | 
 | 235 |   return wcsstr(haystack, needle); | 
 | 236 | } | 
 | 237 |  | 
| Dan Albert | 205dd7d | 2014-06-04 10:14:19 -0700 | [diff] [blame] | 238 | // This was removed from POSIX 2008. | 
 | 239 | extern "C" sighandler_t bsd_signal(int signum, sighandler_t handler) { | 
 | 240 |   return signal(signum, handler); | 
 | 241 | } | 
 | 242 |  | 
| Elliott Hughes | 1edfd9e | 2015-01-26 21:45:56 -0800 | [diff] [blame] | 243 | #if !defined(__i386__) | 
| Elliott Hughes | 76f8916 | 2015-01-26 13:34:58 -0800 | [diff] [blame] | 244 | // This was removed from POSIX 2008. | 
 | 245 | #undef bcopy | 
 | 246 | extern "C" void bcopy(const void* src, void* dst, size_t n) { | 
 | 247 |   memcpy(dst, src, n); | 
 | 248 | } | 
| Elliott Hughes | 1edfd9e | 2015-01-26 21:45:56 -0800 | [diff] [blame] | 249 | #else | 
 | 250 | // x86 has an assembler implementation. | 
 | 251 | #endif | 
| Elliott Hughes | 76f8916 | 2015-01-26 13:34:58 -0800 | [diff] [blame] | 252 |  | 
| Dan Albert | 205dd7d | 2014-06-04 10:14:19 -0700 | [diff] [blame] | 253 | // sysv_signal() was never in POSIX. | 
 | 254 | extern sighandler_t _signal(int signum, sighandler_t handler, int flags); | 
 | 255 | extern "C" sighandler_t sysv_signal(int signum, sighandler_t handler) { | 
 | 256 |   return _signal(signum, handler, SA_RESETHAND); | 
 | 257 | } | 
 | 258 |  | 
| Elliott Hughes | 3d5cb30 | 2014-06-06 11:44:55 -0700 | [diff] [blame] | 259 | // This is a system call that was never in POSIX. Use readdir(3) instead. | 
| Elliott Hughes | d1ead2a | 2014-06-06 15:24:20 -0700 | [diff] [blame] | 260 | extern "C" int __getdents64(unsigned int, dirent*, unsigned int); | 
 | 261 | extern "C" int getdents(unsigned int fd, dirent* dirp, unsigned int count) { | 
| Elliott Hughes | 3d5cb30 | 2014-06-06 11:44:55 -0700 | [diff] [blame] | 262 |   return __getdents64(fd, dirp, count); | 
 | 263 | } | 
 | 264 |  | 
| Elliott Hughes | bffbfee | 2014-06-06 20:41:42 -0700 | [diff] [blame] | 265 | // This is a BSDism that we never implemented correctly. Used by Firefox. | 
 | 266 | extern "C" int issetugid() { | 
 | 267 |   return 0; | 
 | 268 | } | 
 | 269 |  | 
| Dan Albert | 8229ae4 | 2014-06-13 16:04:41 -0700 | [diff] [blame] | 270 | // This was removed from POSIX 2004. | 
 | 271 | extern "C" pid_t wait3(int* status, int options, struct rusage* rusage) { | 
 | 272 |   return wait4(-1, status, options, rusage); | 
 | 273 | } | 
 | 274 |  | 
| Dan Albert | 462abab | 2014-06-13 16:51:24 -0700 | [diff] [blame] | 275 | // This was removed from POSIX 2004. | 
 | 276 | extern "C" int getdtablesize() { | 
 | 277 |   struct rlimit r; | 
 | 278 |  | 
 | 279 |   if (getrlimit(RLIMIT_NOFILE, &r) < 0) { | 
 | 280 |     return sysconf(_SC_OPEN_MAX); | 
 | 281 |   } | 
 | 282 |  | 
 | 283 |   return r.rlim_cur; | 
 | 284 | } | 
 | 285 |  | 
| Elliott Hughes | 1628eb1 | 2014-08-06 10:47:33 -0700 | [diff] [blame] | 286 | // Only used by ftime, which was removed from POSIX 2008. | 
| Dan Albert | ac64675 | 2014-06-05 02:10:49 +0000 | [diff] [blame] | 287 | struct timeb { | 
 | 288 |   time_t          time; | 
 | 289 |   unsigned short  millitm; | 
 | 290 |   short           timezone; | 
 | 291 |   short           dstflag; | 
 | 292 | }; | 
 | 293 |  | 
 | 294 | // This was removed from POSIX 2008. | 
 | 295 | extern "C" int ftime(struct timeb* tb) { | 
 | 296 |   struct timeval  tv; | 
 | 297 |   struct timezone tz; | 
 | 298 |  | 
 | 299 |   if (gettimeofday(&tv, &tz) < 0) | 
 | 300 |     return -1; | 
 | 301 |  | 
 | 302 |   tb->time    = tv.tv_sec; | 
 | 303 |   tb->millitm = (tv.tv_usec + 500) / 1000; | 
 | 304 |  | 
 | 305 |   if (tb->millitm == 1000) { | 
 | 306 |     ++tb->time; | 
 | 307 |     tb->millitm = 0; | 
 | 308 |   } | 
 | 309 |  | 
 | 310 |   tb->timezone = tz.tz_minuteswest; | 
 | 311 |   tb->dstflag  = tz.tz_dsttime; | 
 | 312 |  | 
 | 313 |   return 0; | 
 | 314 | } | 
 | 315 |  | 
| David 'Digit' Turner | 891dedb | 2014-06-13 12:28:11 +0200 | [diff] [blame] | 316 | // This was removed from POSIX 2008. | 
 | 317 | extern "C" char* index(const char* str, int ch) { | 
 | 318 |   return strchr(str, ch); | 
 | 319 | } | 
 | 320 |  | 
| Elliott Hughes | 5dea472 | 2014-09-03 15:53:11 -0700 | [diff] [blame] | 321 | // This was removed from BSD. | 
 | 322 | extern "C" void arc4random_stir(void) { | 
 | 323 |   // The current implementation stirs itself as needed. | 
 | 324 | } | 
 | 325 |  | 
| Elliott Hughes | fc82973 | 2014-09-08 10:25:33 -0700 | [diff] [blame] | 326 | // This was removed from BSD. | 
 | 327 | extern "C" void arc4random_addrandom(unsigned char*, int) { | 
 | 328 |   // The current implementation adds randomness as needed. | 
 | 329 | } | 
 | 330 |  | 
| Christopher Ferris | f903558 | 2014-09-05 16:39:22 -0700 | [diff] [blame] | 331 | // Old versions of the NDK did not export malloc_usable_size, but did | 
 | 332 | // export dlmalloc_usable_size. We are moving away from dlmalloc in L | 
 | 333 | // so make this call malloc_usable_size. | 
 | 334 | extern "C" size_t dlmalloc_usable_size(void* ptr) { | 
 | 335 |   return malloc_usable_size(ptr); | 
 | 336 | } | 
 | 337 |  | 
| Elliott Hughes | 0f001b6 | 2014-09-12 11:35:05 -0700 | [diff] [blame] | 338 | // In L we added a public pthread_gettid_np, but some apps were using the private API. | 
 | 339 | extern "C" pid_t __pthread_gettid(pthread_t t) { | 
 | 340 |   return pthread_gettid_np(t); | 
 | 341 | } | 
 | 342 |  | 
| Christopher Ferris | f9554a1 | 2015-06-05 17:12:17 -0700 | [diff] [blame] | 343 | // Older versions of apportable used dlmalloc directly instead of malloc, | 
| Christopher Ferris | f183f95 | 2014-10-08 22:48:20 -0700 | [diff] [blame] | 344 | // so export this compatibility shim that simply calls malloc. | 
 | 345 | extern "C" void* dlmalloc(size_t size) { | 
 | 346 |   return malloc(size); | 
 | 347 | } | 
 | 348 |  | 
| Yabin Cui | 2f836d4 | 2015-03-18 14:14:02 -0700 | [diff] [blame] | 349 | #define __get_thread __real_get_thread | 
 | 350 | #include "pthread_internal.h" | 
 | 351 | #undef __get_thread | 
 | 352 | // Various third-party apps contain a backport of our pthread_rwlock implementation that uses this. | 
 | 353 | extern "C" pthread_internal_t* __get_thread() { | 
 | 354 |   return __real_get_thread(); | 
 | 355 | } | 
 | 356 |  | 
| Yabin Cui | 7fb680b | 2015-02-24 13:18:25 -0800 | [diff] [blame] | 357 | #endif // !defined(__LP64__) | 
 | 358 |  | 
 | 359 | // This is never implemented in bionic, only needed for ABI compatibility with the NDK. | 
 | 360 | extern "C" char* getusershell() { | 
 | 361 |   return NULL; | 
 | 362 | } | 
 | 363 |  | 
 | 364 | // This is never implemented in bionic, only needed for ABI compatibility with the NDK. | 
 | 365 | extern "C" void setusershell() { } | 
 | 366 |  | 
 | 367 | // This is never implemented in bionic, only needed for ABI compatibility with the NDK. | 
 | 368 | extern "C" void endusershell() { } | 
| Yabin Cui | 52d7f1a | 2015-02-25 14:58:08 -0800 | [diff] [blame] | 369 |  | 
 | 370 | // This is never implemented in bionic, only needed for ABI compatibility with the NDK. | 
 | 371 | extern "C" void endpwent() { } | 
| Christopher Ferris | f9554a1 | 2015-06-05 17:12:17 -0700 | [diff] [blame] | 372 |  | 
 | 373 | // Since dlmalloc_inspect_all and dlmalloc_trim are exported for systems | 
 | 374 | // that use dlmalloc, be consistent and export them everywhere. | 
 | 375 | #if defined(USE_JEMALLOC) | 
 | 376 | extern "C" void dlmalloc_inspect_all(void (*)(void*, void*, size_t, void*), void*) { | 
 | 377 | } | 
 | 378 | #else | 
 | 379 | extern "C" void dlmalloc_inspect_all_real(void (*)(void*, void*, size_t, void*), void*); | 
 | 380 | extern "C" void dlmalloc_inspect_all(void (*handler)(void*, void*, size_t, void*), void* arg) { | 
 | 381 |   dlmalloc_inspect_all_real(handler, arg); | 
 | 382 | } | 
 | 383 | #endif | 
 | 384 |  | 
 | 385 | #if defined(USE_JEMALLOC) | 
 | 386 | extern "C" int dlmalloc_trim(size_t) { | 
 | 387 |   return 0; | 
 | 388 | } | 
 | 389 | #else | 
 | 390 | extern "C" int dlmalloc_trim_real(size_t); | 
 | 391 | extern "C" int dlmalloc_trim(size_t pad) { | 
 | 392 |   return dlmalloc_trim_real(pad); | 
 | 393 | } | 
 | 394 | #endif |