2 * This file Copyright (C) 2009-2010 Mnemosyne LLC
4 * This file is licensed by the GPL version 2. Works owned by the
5 * Transmission project are granted a special exemption to clause 2(b)
6 * so that the bulk of its code can remain under the MIT license.
7 * This exemption does not extend to derived works not owned by
8 * the Transmission project.
10 * $Id: platform.h 11126 2010-08-05 19:54:44Z charles $
13 #ifndef __TRANSMISSION__
14 #error only libtransmission should #include this header.
20 #define TR_PATH_DELIMITER '/'
21 #define TR_PATH_DELIMITER_STR "/"
24 #include <windef.h> /* MAX_PATH */
25 #define TR_PATH_MAX (MAX_PATH + 1)
27 #include <limits.h> /* PATH_MAX */
29 #define TR_PATH_MAX PATH_MAX
31 #define TR_PATH_MAX 4096
36 * @addtogroup tr_session Session
41 * @brief invoked by tr_sessionInit() to set up the locations of the resume, torrent, and clutch directories.
42 * @see tr_getResumeDir()
43 * @see tr_getTorrentDir()
44 * @see tr_getWebClientDir()
46 void tr_setConfigDir( tr_session
* session
, const char * configDir
);
48 /** @brief return the directory where .resume files are stored */
49 const char * tr_getResumeDir( const tr_session
* );
51 /** @brief return the directory where .torrent files are stored */
52 const char * tr_getTorrentDir( const tr_session
* );
54 /** @brief return the directory where the Web Client's web ui files are kept */
55 const char * tr_getWebClientDir( const tr_session
* );
61 * @addtogroup utils Utilities
65 typedef struct tr_thread tr_thread
;
67 /** @brief Instantiate a new process thread */
68 tr_thread
* tr_threadNew( void ( *func
)(void *), void * arg
);
70 /** @brief Return nonzero if this function is being called from `thread'
71 @param thread the thread being tested */
72 tr_bool
tr_amInThread( const tr_thread
* );
78 typedef struct tr_lock tr_lock
;
80 /** @brief Create a new thread mutex object */
81 tr_lock
* tr_lockNew( void );
83 /** @brief Destroy a thread mutex object */
84 void tr_lockFree( tr_lock
* );
86 /** @brief Attempt to lock a thread mutex object */
87 void tr_lockLock( tr_lock
* );
89 /** @brief Unlock a thread mutex object */
90 void tr_lockUnlock( tr_lock
* );
92 /** @brief return nonzero if the specified lock is locked */
93 int tr_lockHave( const tr_lock
* );
96 void * mmap( void *ptr
, long size
, long prot
, long type
, long handle
, long arg
);
98 long munmap( void *ptr
, long size
);