user_locks.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #ifndef USER_LOCKS_H
  2. #define USER_LOCKS_H
  3. int user_lock(unsigned int id1, unsigned int id2, LOCKMODE lockmode);
  4. int user_unlock(unsigned int id1, unsigned int id2, LOCKMODE lockmode);
  5. int user_write_lock(unsigned int id1, unsigned int id2);
  6. int user_write_unlock(unsigned int id1, unsigned int id2);
  7. int user_write_lock_oid(Oid oid);
  8. int user_write_unlock_oid(Oid oid);
  9. int user_unlock_all(void);
  10. #endif
  11. /*
  12.  * Local Variables:
  13.  *  tab-width: 4
  14.  *  c-indent-level: 4
  15.  *  c-basic-offset: 4
  16.  * End:
  17.  */