mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-06 21:09:47 +00:00
(closes issue #7852)
Reported by: nic_bellamy Patches: 2006-10-03_svn_44249_voicemail_lockmode_v3.patch uploaded by nic_bellamy (license 213) Add support for configurable file locking methods. The default is "lockfile", which is the old behavior. There is an additional option, "flock", which is intended for use in situations where the lockfile method will not work, such as with SMB/CIFS mounts. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81233 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -202,6 +202,18 @@ enum AST_LOCK_RESULT {
|
||||
AST_LOCK_FAILURE = -3,
|
||||
};
|
||||
|
||||
/*! \brief Type of locking to use in ast_lock_path / ast_unlock_path */
|
||||
enum AST_LOCK_TYPE {
|
||||
AST_LOCK_TYPE_LOCKFILE = 0,
|
||||
AST_LOCK_TYPE_FLOCK = 1,
|
||||
};
|
||||
|
||||
/*!
|
||||
* \brief Set the type of locks used by ast_lock_path()
|
||||
* \param type the locking type to use
|
||||
*/
|
||||
void ast_set_lock_type(enum AST_LOCK_TYPE type);
|
||||
|
||||
/*!
|
||||
* \brief Lock a filesystem path.
|
||||
* \param path the path to be locked
|
||||
|
Reference in New Issue
Block a user