transmission/libtransmission/platform.h

89 lines
2.0 KiB
C
Raw Normal View History

/*
* This file Copyright (C) 2009-2014 Mnemosyne LLC
2006-07-16 19:39:23 +00:00
*
* It may be used under the GNU Public License v2 or v3 licenses,
* or any future license endorsed by Mnemosyne LLC.
2006-07-16 19:39:23 +00:00
*
* $Id$
*/
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
#endif
#ifndef TR_PLATFORM_H
#define TR_PLATFORM_H
#define TR_PATH_DELIMITER '/'
#define TR_PATH_DELIMITER_STR "/"
/**
* @addtogroup tr_session Session
2009-08-10 20:04:08 +00:00
* @{
*/
/**
* @brief invoked by tr_sessionInit () to set up the locations of the resume, torrent, and clutch directories.
* @see tr_getResumeDir ()
* @see tr_getTorrentDir ()
* @see tr_getWebClientDir ()
*/
void tr_setConfigDir (tr_session * session, const char * configDir);
2006-07-16 19:39:23 +00:00
/** @brief return the directory where .resume files are stored */
const char * tr_getResumeDir (const tr_session *);
/** @brief return the directory where .torrent files are stored */
const char * tr_getTorrentDir (const tr_session *);
/** @brief return the directory where the Web Client's web ui files are kept */
const char * tr_getWebClientDir (const tr_session *);
/** @} */
/**
* @addtogroup utils Utilities
* @{
*/
typedef struct tr_thread tr_thread;
/** @brief Instantiate a new process thread */
tr_thread* tr_threadNew (void (*func)(void *), void * arg);
/** @brief Return nonzero if this function is being called from `thread'
@param thread the thread being tested */
bool tr_amInThread (const tr_thread *);
/***
****
***/
typedef struct tr_lock tr_lock;
/** @brief Create a new thread mutex object */
tr_lock * tr_lockNew (void);
/** @brief Destroy a thread mutex object */
void tr_lockFree (tr_lock *);
/** @brief Attempt to lock a thread mutex object */
void tr_lockLock (tr_lock *);
/** @brief Unlock a thread mutex object */
void tr_lockUnlock (tr_lock *);
/** @brief return nonzero if the specified lock is locked */
int tr_lockHave (const tr_lock *);
2008-09-05 14:31:52 +00:00
#ifdef WIN32
void * mmap (void *ptr, long size, long prot, long type, long handle, long arg);
long munmap (void *ptr, long size);
2008-09-05 14:31:52 +00:00
#endif
/* @} */
2006-07-16 19:39:23 +00:00
#endif