Displaying 2 results from an estimated 2 matches for "timer_handler".
2009 Jul 14
0
[LLVMdev] "Recursive compilation detected" and signals
...L6 LEVEL5 LEVEL5
#define LEVEL7 LEVEL6 LEVEL6
#define LEVEL8 LEVEL7 LEVEL7
#define LEVEL9 LEVEL8 LEVEL8
#define LEVEL10 LEVEL9 LEVEL9
#define LEVEL11 LEVEL10 LEVEL10
#define LEVEL12 LEVEL11 LEVEL11
#define LEVEL13 LEVEL12 LEVEL12
#define LEVEL14 LEVEL13 LEVEL13
#define LEVEL15 LEVEL14 LEVEL14
void timer_handler (int signum)
{
printf ("timer expired\n");
LEVEL13;
}
void sigsegv_handler (int signum) {
printf ("Uh oh\n");
LEVEL13;
}
int main (int argc, char **argv) {
struct itimerval timer;
struct sigaction sa1, sa2;
/* Configure the timer to expire after 25...
2012 Nov 26
13
[PATCH 0 of 4] Minios improvements for app development
This patch series contains a set of patches making minios rather easier
to use, from an application development point of view.
Overview of patches:
1 Command line argument parsing support, from Xen.
2 Weak console handler function.
3 Build system tweaks for application directories.
4 Trailing whitespace cleanup. (because it is very messy)
Patch 4 is likely to be more controversial than