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:
parent
4deace13e4
commit
26116455c4
@ -1,3 +1,11 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
2002-04-09 Tom Rix <trix@redhat.com>
|
2002-04-09 Tom Rix <trix@redhat.com>
|
||||||
|
|
||||||
* libc/include/sys/reent.h (_REENT_INIT_PTR): Fix typo.
|
* libc/include/sys/reent.h (_REENT_INIT_PTR): Fix typo.
|
||||||
|
@ -18,6 +18,10 @@ void *realloc() { return 0; }
|
|||||||
void free() { ; }
|
void free() { ; }
|
||||||
void abort() { ; }
|
void abort() { ; }
|
||||||
int raise() { return -1; }
|
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
|
/* gcc 2.8.1 implicitly can generate references to these for at
|
||||||
* least sparc-elf */
|
* least sparc-elf */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user