#include "qplatformdefs.h"
#include "qwaitcondition.h"
#include "qmutex.h"
#include "qatomic.h"
#include "qmutex_p.h"
#include "qstring.h"
#include <errno.h>
Include dependency graph for qwaitcondition_unix.cpp:

Go to the source code of this file.
Classes | |
| struct | QWaitConditionPrivate |
Functions | |
| static void | report_error (int code, const char *where, const char *what) |
| static void report_error | ( | int | code, | |
| const char * | where, | |||
| const char * | what | |||
| ) | [static] |
Definition at line 34 of file qwaitcondition_unix.cpp.
References qt_error_string(), and qWarning().
00035 { 00036 if (code != 0) 00037 qWarning("%s: %s failure: %s", where, what, qPrintable(qt_error_string(code))); 00038 }
Here is the call graph for this function:

1.5.1