summaryrefslogtreecommitdiffstats
path: root/freebsd-userspace/rtems/rtems-uthread_main_np.c
blob: fa289007077d7ca837b1420bd57d83f8b317518c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * RTEMS version of 
 */

#include <rtems.h>

__weak_reference(_pthread_main_np, pthread_main_np);

/*
 * Provide the equivalent to Solaris thr_main() function
 */
int
_pthread_main_np()
{
  /* Created and set in rtems_bsd_initialize */
  extern rtems_id rtems_init_task_id;  

  if ( rtems_init_task_id == rtems_task_self() )
    return 1;
  else 
    return 0;
}