| 
									
										
										
										
											2010-05-14 20:05:21 -03:00
										 |  |  | #ifndef _PERF_PSTACK_
 | 
					
						
							|  |  |  | #define _PERF_PSTACK_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-10 15:49:07 -03:00
										 |  |  | #include <stdbool.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-14 20:05:21 -03:00
										 |  |  | struct pstack; | 
					
						
							|  |  |  | struct pstack *pstack__new(unsigned short max_nr_entries); | 
					
						
							| 
									
										
										
										
											2013-11-05 15:32:36 -03:00
										 |  |  | void pstack__delete(struct pstack *pstack); | 
					
						
							|  |  |  | bool pstack__empty(const struct pstack *pstack); | 
					
						
							|  |  |  | void pstack__remove(struct pstack *pstack, void *key); | 
					
						
							|  |  |  | void pstack__push(struct pstack *pstack, void *key); | 
					
						
							|  |  |  | void *pstack__pop(struct pstack *pstack); | 
					
						
							| 
									
										
										
										
											2010-05-14 20:05:21 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* _PERF_PSTACK_ */
 |