aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/openmp/kmp_io.h
blob: cbc74027c5c283bb2e126dd4da595ee76709278b (plain) (blame)
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
/* 
 * kmp_io.h -- RTL IO header file. 
 */ 
 
 
//===----------------------------------------------------------------------===// 
// 
//                     The LLVM Compiler Infrastructure 
// 
// This file is dual licensed under the MIT and the University of Illinois Open 
// Source Licenses. See LICENSE.txt for details. 
// 
//===----------------------------------------------------------------------===// 
 
 
#ifndef KMP_IO_H 
#define KMP_IO_H 
 
#ifdef __cplusplus 
extern "C" { 
#endif 
 
/* ------------------------------------------------------------------------ */ 
/* ------------------------------------------------------------------------ */ 
 
enum kmp_io { 
    kmp_out = 0, 
    kmp_err 
}; 
 
extern kmp_bootstrap_lock_t __kmp_stdio_lock;     /* Control stdio functions */ 
extern kmp_bootstrap_lock_t __kmp_console_lock;   /* Control console initialization */ 
 
extern void __kmp_vprintf( enum kmp_io __kmp_io, char const * format, va_list ap ); 
extern void __kmp_printf( char const * format, ... ); 
extern void __kmp_printf_no_lock( char const * format, ... ); 
extern void __kmp_close_console( void ); 
 
#ifdef __cplusplus 
} 
#endif 
 
#endif /* KMP_IO_H */