mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
44 lines
1,009 B
C++
44 lines
1,009 B
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file os_trace.h
|
|
*
|
|
* tracing
|
|
*
|
|
* $Id: os_trace.h 80826 2008-03-04 14:51:23Z wotte $
|
|
*
|
|
* @author Don Hinton <dhinton@dresystems.com>
|
|
* @author This code was originally in various places including ace/OS.h.
|
|
*/
|
|
//=============================================================================
|
|
|
|
#ifndef ACE_OS_INCLUDE_OS_TRACE_H
|
|
#define ACE_OS_INCLUDE_OS_TRACE_H
|
|
|
|
#include /**/ "ace/pre.h"
|
|
|
|
#include /**/ "ace/config-all.h"
|
|
|
|
#if !defined (ACE_LACKS_PRAGMA_ONCE)
|
|
# pragma once
|
|
#endif /* ACE_LACKS_PRAGMA_ONCE */
|
|
|
|
#include "ace/os_include/sys/os_types.h"
|
|
|
|
#if !defined (ACE_LACKS_TRACE_H)
|
|
# include /**/ <trace.h>
|
|
#endif /* !ACE_LACKS_TRACE_H */
|
|
|
|
// Place all additions (especially function declarations) within extern "C" {}
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#include /**/ "ace/post.h"
|
|
#endif /* ACE_OS_INCLUDE_OS_TRACE_H */
|