mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	 f40ee1b03f
			
		
	
	
		f40ee1b03f
		
	
	
	
	
		
			
			This implements more of the dlfcn functionality. Most notably: * It's now possible to dlopen() libraries which were already loaded at program startup time. This does not cause those libraries to be loaded twice. * Errors are reported via dlerror() rather than by crashing the program. * Calls to the dl*() functions are thread-safe.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			392 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			392 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <sys/cdefs.h>
 | |
| 
 | |
| __BEGIN_DECLS
 | |
| 
 | |
| #define RTLD_DEFAULT 0
 | |
| #define RTLD_LAZY 2
 | |
| #define RTLD_NOW 4
 | |
| #define RTLD_GLOBAL 8
 | |
| #define RTLD_LOCAL 16
 | |
| 
 | |
| int dlclose(void*);
 | |
| char* dlerror();
 | |
| void* dlopen(const char*, int);
 | |
| void* dlsym(void*, const char*);
 | |
| 
 | |
| __END_DECLS
 |