/usr/include/sipxtapi/os/OsTaskId.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | //
// Copyright (C) 2006-2013 SIPez LLC. All rights reserved.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _OsTaskId_h_
#define _OsTaskId_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
// DEFINES
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// ENUMS
// TYPEDEFS
#if defined(WIN32)
typedef int OsTaskId_t; // Not sure this is proper for this platform at least on 64bit ...
#elif defined(_VXWORKS)
typedef intptr_t OsTaskId_t; // Not sure this is proper for this platform...
#elif defined(__pingtel_on_posix__)
typedef pthread_t OsTaskId_t;
#else
# error Unsupported target platform.
#endif
#endif // _OsTaskId_h_
|