~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/util/mutex.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/perf/util/mutex.h (Version linux-6.12-rc7) and /tools/perf/util/mutex.h (Version linux-5.11.22)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 #ifndef __PERF_MUTEX_H                            
  3 #define __PERF_MUTEX_H                            
  4                                                   
  5 #include <pthread.h>                              
  6 #include <stdbool.h>                              
  7                                                   
  8 /*                                                
  9  * A function-like feature checking macro that    
 10  * `__has_attribute`, which is defined by GCC     
 11  * nonzero constant integer if the attribute i    
 12  */                                               
 13 #ifdef __has_attribute                            
 14 #define HAVE_ATTRIBUTE(x) __has_attribute(x)      
 15 #else                                             
 16 #define HAVE_ATTRIBUTE(x) 0                       
 17 #endif                                            
 18                                                   
 19 #if HAVE_ATTRIBUTE(guarded_by) && HAVE_ATTRIBU    
 20         HAVE_ATTRIBUTE(lockable) && HAVE_ATTRI    
 21         HAVE_ATTRIBUTE(exclusive_trylock_funct    
 22         HAVE_ATTRIBUTE(no_thread_safety_analys    
 23                                                   
 24 /* Documents if a shared field or global varia    
 25 #define GUARDED_BY(x) __attribute__((guarded_b    
 26                                                   
 27 /*                                                
 28  * Documents if the memory location pointed to    
 29  * a mutex when dereferencing the pointer.        
 30  */                                               
 31 #define PT_GUARDED_BY(x) __attribute__((pt_gua    
 32                                                   
 33 /* Documents if a type is a lockable type. */     
 34 #define LOCKABLE __attribute__((lockable))        
 35                                                   
 36 /* Documents functions that acquire a lock in     
 37 #define EXCLUSIVE_LOCK_FUNCTION(...)  __attrib    
 38                                                   
 39 /*                                                
 40  * Documents functions that expect a lock to b    
 41  * and release it in the body of the function.    
 42  */                                               
 43 #define UNLOCK_FUNCTION(...) __attribute__((un    
 44                                                   
 45 /* Documents functions that try to acquire a l    
 46 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) \         
 47         __attribute__((exclusive_trylock_funct    
 48                                                   
 49 /* Documents a function that expects a mutex t    
 50 #define EXCLUSIVE_LOCKS_REQUIRED(...) __attrib    
 51                                                   
 52 /* Turns off thread safety checking within the    
 53 #define NO_THREAD_SAFETY_ANALYSIS __attribute_    
 54                                                   
 55 #else                                             
 56                                                   
 57 #define GUARDED_BY(x)                             
 58 #define PT_GUARDED_BY(x)                          
 59 #define LOCKABLE                                  
 60 #define EXCLUSIVE_LOCK_FUNCTION(...)              
 61 #define UNLOCK_FUNCTION(...)                      
 62 #define EXCLUSIVE_TRYLOCK_FUNCTION(...)           
 63 #define EXCLUSIVE_LOCKS_REQUIRED(...)             
 64 #define NO_THREAD_SAFETY_ANALYSIS                 
 65                                                   
 66 #endif                                            
 67                                                   
 68 /*                                                
 69  * A wrapper around the mutex implementation t    
 70  * usage, etc.                                    
 71  */                                               
 72 struct LOCKABLE mutex {                           
 73         pthread_mutex_t lock;                     
 74 };                                                
 75                                                   
 76 /* A wrapper around the condition variable imp    
 77 struct cond {                                     
 78         pthread_cond_t cond;                      
 79 };                                                
 80                                                   
 81 /* Default initialize the mtx struct. */          
 82 void mutex_init(struct mutex *mtx);               
 83 /*                                                
 84  * Initialize the mtx struct and set the proce    
 85  * process-private attribute.                     
 86  */                                               
 87 void mutex_init_pshared(struct mutex *mtx);       
 88 void mutex_destroy(struct mutex *mtx);            
 89                                                   
 90 void mutex_lock(struct mutex *mtx) EXCLUSIVE_L    
 91 void mutex_unlock(struct mutex *mtx) UNLOCK_FU    
 92 /* Tries to acquire the lock and returns true     
 93 bool mutex_trylock(struct mutex *mtx) EXCLUSIV    
 94                                                   
 95 /* Default initialize the cond struct. */         
 96 void cond_init(struct cond *cnd);                 
 97 /*                                                
 98  * Initialize the cond struct and specify the     
 99  * process-private attribute.                     
100  */                                               
101 void cond_init_pshared(struct cond *cnd);         
102 void cond_destroy(struct cond *cnd);              
103                                                   
104 void cond_wait(struct cond *cnd, struct mutex     
105 void cond_signal(struct cond *cnd);               
106 void cond_broadcast(struct cond *cnd);            
107                                                   
108 #endif /* __PERF_MUTEX_H */                       
109                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php