URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [linux/] [uClibc/] [test/] [dlopen/] [libtest.c] - Rev 1325
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <pthread.h> #include <stdint.h> extern int __pthread_once(void); void dltest(uint32_t **value1, uint32_t **value2) { *value1 = (uint32_t *) __pthread_once; *value2 = (uint32_t *) pthread_self; }
Go to most recent revision | Compare with Previous | Blame | View Log