File: public.h

package info (click to toggle)
njamd 0.9.3pre2-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,704 kB
  • ctags: 1,056
  • sloc: ansic: 9,367; sh: 7,921; makefile: 121; perl: 52
file content (33 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

/**
 * @file public.h
 *
 * Functions exported publicly
 */
#ifndef __NJ_LIB_PUBLIC_H__
#define __NJ_LIB_PUBLIC_H__

#include <config.h>
#include <signal.h>

/* From public.c */
#ifdef HAVE_POSIX_SIGACTION
void __nj_public_signals_dispatch(int sig, siginfo_t *info, void *arg);
#else
void  __nj_public_signals_dispatch(int sig);
#endif

void __nj_ptr_info(nj_addr_t ptr);
    
/**@{ @name Callstack placeholder symbols */
void __nj_public_init();
void __nj_public_end();
void __nj_pthread_exit_start();
void __nj_pthread_exit_end();
void __nj_exit_start();
void __nj_exit_end();

/*@}*/

#endif /* public.h */
// vim:ts=4