File: pth_blockedsig.c

package info (click to toggle)
valgrind 1%3A3.3.1-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 34,452 kB
  • ctags: 27,778
  • sloc: ansic: 234,398; sh: 14,186; xml: 11,662; perl: 4,410; asm: 3,135; makefile: 3,011; exp: 625; cpp: 255; haskell: 195
file content (65 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download | duplicates (13)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <signal.h>
#include <pthread.h>

static void sig_usr1(int);

static pthread_t main_thread;

void *
child_main(void *no_args)
{
//  int i;
  
// Only do it once, to shorten test --njn
//  for (i = 0; i < 5; ++i)
//    {
      sleep (1);
      fprintf (stdout, "thread CHILD sending SIGUSR1 to thread MAIN\n");
      if (pthread_kill (main_thread, SIGUSR1) != 0)
        fprintf (stderr, "error doing pthread_kill\n"); 
//    }

  return no_args;
}

int
main(void)
{
  struct sigaction sigact;
  sigset_t newmask, oldmask;
  pthread_t child;

  memset(&newmask, 0, sizeof newmask);
  sigemptyset (&newmask);
  sigaddset (&newmask, SIGUSR1);

  if (pthread_sigmask (SIG_BLOCK, &newmask, &oldmask) != 0)
    fprintf (stderr, "SIG_BLOCK error");
  
  memset (&sigact, 0, sizeof sigact);
  sigact.sa_handler = sig_usr1;
  if (sigaction(SIGUSR1, &sigact, NULL) != 0)
    fprintf (stderr, "signal(SIGINT) error");
  
  main_thread = pthread_self ();
  if (pthread_create (&child, NULL, child_main, NULL) != 0)
    fprintf (stderr, "error creating thread");

  pthread_join (child, NULL);
  
  exit(0);
}

static void
sig_usr1 (int signo)
{
  fprintf (stderr, "SHOULD NOT BE HERE (SIGUSR1)!!!!\n");
  return;
}