]> sjero.net Git - iperf/blob - compat/error.c
1d3647e3e4e3b9e497b1efe191b52a7998e67e24
[iperf] / compat / error.c
1 /*--------------------------------------------------------------- 
2  * Copyright (c) 1999,2000,2001,2002,2003                              
3  * The Board of Trustees of the University of Illinois            
4  * All Rights Reserved.                                           
5  *--------------------------------------------------------------- 
6  * Permission is hereby granted, free of charge, to any person    
7  * obtaining a copy of this software (Iperf) and associated       
8  * documentation files (the "Software"), to deal in the Software  
9  * without restriction, including without limitation the          
10  * rights to use, copy, modify, merge, publish, distribute,        
11  * sublicense, and/or sell copies of the Software, and to permit     
12  * persons to whom the Software is furnished to do
13  * so, subject to the following conditions: 
14  *
15  *     
16  * Redistributions of source code must retain the above 
17  * copyright notice, this list of conditions and 
18  * the following disclaimers. 
19  *
20  *     
21  * Redistributions in binary form must reproduce the above 
22  * copyright notice, this list of conditions and the following 
23  * disclaimers in the documentation and/or other materials 
24  * provided with the distribution. 
25  * 
26  *     
27  * Neither the names of the University of Illinois, NCSA, 
28  * nor the names of its contributors may be used to endorse 
29  * or promote products derived from this Software without
30  * specific prior written permission. 
31  * 
32  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
33  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
34  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
35  * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT 
36  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
37  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
38  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
39  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
40  * ________________________________________________________________
41  * National Laboratory for Applied Network Research 
42  * National Center for Supercomputing Applications 
43  * University of Illinois at Urbana-Champaign 
44  * http://www.ncsa.uiuc.edu
45  * ________________________________________________________________ 
46  *
47  * error.c
48  * by Mark Gates <mgates@nlanr.net>
49  * -------------------------------------------------------------------
50  * error handlers
51  * ------------------------------------------------------------------- */
52
53 #include "headers.h"
54 #include "util.h"
55
56 #ifdef __cplusplus
57 extern "C" {
58 #endif
59
60 /* -------------------------------------------------------------------
61  * warn
62  *
63  * Prints message and return
64  * ------------------------------------------------------------------- */
65
66 void warn( const char *inMessage, const char *inFile, int inLine ) {
67     fflush( 0 );
68
69 #ifdef NDEBUG
70     fprintf( stderr, "%s failed\n", inMessage );
71 #else
72
73     /* while debugging output file/line number also */
74     fprintf( stderr, "%s failed (%s:%d)\n", inMessage, inFile, inLine );
75 #endif
76 } /* end warn */
77
78 /* -------------------------------------------------------------------
79  * warn_errno
80  *
81  * Prints message and errno message, and return.
82  * ------------------------------------------------------------------- */
83
84 void warn_errno( const char *inMessage, const char *inFile, int inLine ) {
85     int my_err;
86     const char* my_str;
87
88     /* get platform's errno and error message */
89     my_err = errno;
90     my_str = strerror( my_err );
91
92     fflush( 0 );
93
94 #ifdef NDEBUG
95     fprintf( stderr, "%s failed: %s\n", inMessage, my_str );
96 #else
97
98     /* while debugging output file/line number and errno value also */
99     fprintf( stderr, "%s failed (%s:%d): %s (%d)\n",
100              inMessage, inFile, inLine, my_str, my_err );
101 #endif
102 } /* end warn_errno */
103
104 #ifdef __cplusplus
105 } /* end extern "C" */
106 #endif