mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
12 lines
394 B
C
12 lines
394 B
C
#ifndef USER_LOCKS_H
|
|
#define USER_LOCKS_H
|
|
|
|
int user_lock(unsigned int id1, unsigned int id2, LOCKT lockt);
|
|
int user_unlock(unsigned int id1, unsigned int id2, LOCKT lockt);
|
|
int user_write_lock(unsigned int id1, unsigned int id2);
|
|
int user_write_unlock(unsigned int id1, unsigned int id2);
|
|
int user_write_lock_oid(Oid oid);
|
|
int user_write_unlock_oid(Oid oid);
|
|
int user_unlock_all(void);
|
|
|
|
#endif
|