mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef LOCK_INCLUDED
 | |
| #define LOCK_INCLUDED
 | |
| 
 | |
| #include "thr_lock.h"                           /* thr_lock_type */
 | |
| 
 | |
| // Forward declarations
 | |
| struct TABLE;
 | |
| struct TABLE_LIST;
 | |
| class THD;
 | |
| typedef struct st_mysql_lock MYSQL_LOCK;
 | |
| 
 | |
| 
 | |
| MYSQL_LOCK *mysql_lock_tables(THD *thd, TABLE **table, uint count, uint flags);
 | |
| void mysql_unlock_tables(THD *thd, MYSQL_LOCK *sql_lock);
 | |
| void mysql_unlock_read_tables(THD *thd, MYSQL_LOCK *sql_lock);
 | |
| void mysql_unlock_some_tables(THD *thd, TABLE **table,uint count);
 | |
| void mysql_lock_remove(THD *thd, MYSQL_LOCK *locked,TABLE *table);
 | |
| void mysql_lock_abort(THD *thd, TABLE *table, bool upgrade_lock);
 | |
| bool mysql_lock_abort_for_thread(THD *thd, TABLE *table);
 | |
| MYSQL_LOCK *mysql_lock_merge(MYSQL_LOCK *a,MYSQL_LOCK *b);
 | |
| void broadcast_refresh(void);
 | |
| /* Lock based on name */
 | |
| bool lock_schema_name(THD *thd, const char *db);
 | |
| /* Lock based on stored routine name */
 | |
| bool lock_routine_name(THD *thd, bool is_function, const char *db,
 | |
|                        const char *name);
 | |
| 
 | |
| #endif /* LOCK_INCLUDED */
 |