1explain_mkostemp_or_die(3) Library Functions Manual explain_mkostemp_or_die(3)
2
3
4
6 explain_mkostemp_or_die - create a unique temporary file and report
7 errors
8
10 #include <libexplain/mkostemp.h>
11 int explain_mkostemp_or_die(char *templat, int flags);
12 int explain_mkostemp_on_error(char *templat, int flags);
13
15 The explain_mkostemp_or_die function is used to call the mkostemp(3)
16 system call. On failure an explanation will be printed to stderr,
17 obtained from the explain_mkostemp(3) function, and then the process
18 terminates by calling exit(EXIT_FAILURE).
19
20 The explain_mkostemp_on_error function is used to call the mkostemp(3)
21 system call. On failure an explanation will be printed to stderr,
22 obtained from the explain_mkostemp(3) function, but still returns to
23 the caller.
24
25 templat The template, exactly as to be passed to the mkostemp(3) system
26 call.
27
28 flags The flags, exactly as to be passed to the mkostemp(3) system
29 call.
30
32 The explain_mkostemp_or_die function only returns on success, see
33 mkostemp(3) for more information. On failure, prints an explanation and
34 exits, it does not return.
35
36 The explain_mkostemp_on_error function always returns the value return
37 by the wrapped mkostemp(3) system call.
38
40 The explain_mkostemp_or_die function is intended to be used in a fash‐
41 ion similar to the following example:
42 int result = explain_mkostemp_or_die(templat, flags);
43
45 mkostemp(3)
46 create a unique temporary file
47
48 explain_mkostemp(3)
49 explain mkostemp(3) errors
50
51 exit(2) terminate the calling process
52
54 libexplain version 1.4
55 Copyright (C) 2009 Peter Miller
56
57
58
59 explain_mkostemp_or_die(3)