mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
eec4c7366f
Here is a tar file the new directories, which substitute the old ones in contrib. Please remove the old directories array, datetime, miscutil, string and userlock before unpacking the tar file in contrib. Note that as the modules are now installed in lib/modules I install all my sql code in lib/sql. In my opinion also the other contributors should follow these rules.
21 lines
517 B
C
21 lines
517 B
C
#ifndef USER_LOCKS_H
|
|
#define USER_LOCKS_H
|
|
|
|
int user_lock(unsigned int id1, unsigned int id2, LOCKMODE lockmode);
|
|
int user_unlock(unsigned int id1, unsigned int id2, LOCKMODE lockmode);
|
|
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
|
|
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-indent-level: 4
|
|
* c-basic-offset: 4
|
|
* End:
|
|
*/
|