__uc_malloc.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* vi: set sw=4 ts=4: */
  2. /* uClibc internal malloc.
  3. Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with this library; see the file COPYING.LIB. If
  14. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  15. Cambridge, MA 02139, USA.
  16. The author may be reached (Email) at the address mike@@ai.mit.edu,
  17. or (US mail) as Mike Haertel c/o Free Software Foundation. */
  18. #include <stdlib.h>
  19. #include <unistd.h>
  20. #include <malloc.h>
  21. void (*__uc_malloc_failed)(size_t size);
  22. void *__uc_malloc(size_t size)
  23. {
  24. void *p;
  25. while (1) {
  26. p = malloc(size);
  27. if (!size || p)
  28. return p;
  29. if (!__uc_malloc_failed)
  30. _exit(1);
  31. __uc_malloc_failed(size);
  32. }
  33. }