2002-04-12 Eric Norum <eric.norum@usask.com>
* libc/sys/rtems/crt0.c (rtems_gxx_mutex_init): Dummy routine to allow autoconf to determine that building executables for rtems works. (rtems_gxx_mutex_lock, rtems_gxx_mutex_unlock): Ditto. (rtems_gxx_mutex_once): Ditto.
This commit is contained in:
@ -18,6 +18,10 @@ void *realloc() { return 0; }
|
||||
void free() { ; }
|
||||
void abort() { ; }
|
||||
int raise() { return -1; }
|
||||
void rtems_gxx_mutex_init() { }
|
||||
int rtems_gxx_mutex_lock() { return -1; }
|
||||
int rtems_gxx_mutex_unlock() { return -1; }
|
||||
int rtems_gxx_once() { return -1; }
|
||||
|
||||
/* gcc 2.8.1 implicitly can generate references to these for at
|
||||
* least sparc-elf */
|
||||
|
Reference in New Issue
Block a user