/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pywrap/pcipywrap.h

  • Committer: Vasilii Chernov
  • Date: 2016-03-03 14:38:32 UTC
  • mto: This revision was merged to the branch mainline in revision 372.
  • Revision ID: vchernov@inr.ru-20160303143832-0rlinjoy3zczhjt2
1. Pcipywrap: add persistent locking wrappings
2. html-server: 
   - add scripts tab
   - change tab view to jQuery tabs

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
 * \return 1, serialized to PyObject or NULL with exeption text, if failed.
80
80
 */
81
81
PyObject* pcipywrap_lock(pcipywrap *self, const char *lock_id);
82
 
 
 
82
PyObject* pcipywrap_lock_persistent(pcipywrap *self, const char *lock_id);
83
83
PyObject* pcipywrap_try_lock(pcipywrap *self, const char *lock_id);
 
84
PyObject* pcipywrap_try_lock_persistent(pcipywrap *self, const char *lock_id);
84
85
PyObject* pcipywrap_unlock(pcipywrap *self, const char *lock_id);
 
86
PyObject* pcipywrap_unlock_persistent(pcipywrap *self, const char *lock_id);
85
87
 
86
88
#endif /* PCIPYWRAP_H */