File: threadederrno.c

package info (click to toggle)
valgrind 1%3A3.14.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 156,980 kB
  • sloc: ansic: 728,128; exp: 26,134; xml: 22,268; cpp: 7,638; asm: 7,312; makefile: 6,102; perl: 5,910; sh: 5,717
file content (43 lines) | stat: -rw-r--r-- 964 bytes parent folder | download | duplicates (6)
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
/* Make sure we use the POSIX version of strerror_r() on Linux. */
#define _XOPEN_SOURCE 600

#include <pthread.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>


void* thr2 ( void* v )
{
  char errstr[128];
  FILE* f = fopen("bogus2", "r");
  strerror_r(errno, errstr, sizeof(errstr));
  printf("f  = %ld, errno  = %d (%s)\n", (long)f, errno, errstr);
  return NULL;
}

void* thr3 ( void* v )
{
  char errstr[128];
  FILE* f = fopen("bogus3", "r");
  strerror_r(errno, errstr, sizeof(errstr));
  printf("f  = %ld, errno  = %d (%s)\n", (long)f, errno, errstr);
  return NULL;
}


int main ( void )
{
  char errstr[128];
  FILE* f;
  pthread_t tid2, tid3;
  pthread_create(&tid2, NULL, &thr2, NULL);
  pthread_create(&tid3, NULL, &thr3, NULL);
  f = fopen("bogus", "r");
  strerror_r(errno, errstr, sizeof(errstr));
  printf("f  = %ld, errno  = %d (%s)\n", (long)f, errno, errstr);
  pthread_join(tid2, NULL);
  pthread_join(tid3, NULL);
  return 0;
}