mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	 8f62579c38
			
		
	
	8f62579c38
	
	
	
		
			
			PSTACK, libmysqld and MySQL filesystem UPDATE ... ORDER BY DELETE ... ORDER BY New faster fulltext handling Faster compressed keys
		
			
				
	
	
		
			29 lines
		
	
	
		
			374 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			374 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $Header$ */
 | |
| 
 | |
| /*
 | |
|  * LinuxThreads specific stuff.
 | |
|  */
 | |
| 
 | |
| #ifndef	pstack_linuxthreads_h_
 | |
| #define	pstack_linuxthreads_h_
 | |
| 
 | |
| #include	<pthread.h>
 | |
| #include	"pstacktrace.h"
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| /*
 | |
|  * Tell other threads to dump stacks...
 | |
|  */
 | |
| int
 | |
| linuxthreads_notify_others(	const int	signotify);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif /* pstack_linuxthreads_h_ */
 | |
| 
 |