quickexec_p.h
00001 #ifndef QUICKEXEC_H 00002 #define QUICKEXEC_H 00003 00004 #define HAVE_QUICKEXEC 00005 /* 00006 A special version of execl that opens a shared library and executes the main() function in 00007 the lib. Requires the quickexec daemon to run. 00008 00009 Note: You do not need to call fork() before calling quickexec, the function actually returns. 00010 00011 WARNING: path has to be a shared library, otherwise quickexec will hang 00012 */ 00013 00014 extern int quickexecl( const char *path, const char *, ...); 00015 extern int quickexecv( const char *path, const char *argv[] ); 00016 00017 #endif
