pkgsrc-wip/gcc42/files/ada_lwp_self.c
Blair Sadewitz e2413e229d This is a first shot at getting gcc 4.2.0 into pkgsrc. As of now, only
C/C++/objc are supported.  Others are welcome to add the rest, and there're
probably other things to be fixed/done as well that I didn't notice.

Only tested by me on NetBSD/i386 4.99.19, where it works well.
2007-05-08 03:35:16 +00:00

6 lines
116 B
C

/* Binding to _lwp_self for the Ada RTS */
#include <lwp.h>
lwpid_t ada_lwp_self(void) {
return _lwp_self();
}