Changeset 503 for trunk/gui/src
- Timestamp:
- Aug 7, 2006, 1:11:38 PM (18 years ago)
- Location:
- trunk/gui/src
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/src/RpInit.c
r193 r503 17 17 int RpRlimit_Init _ANSI_ARGS_((Tcl_Interp *interp)); 18 18 19 #ifdef BUILD_Rappture 20 __declspec( dllexport ) 21 #endif 19 22 int 20 Rappturegui_Init(interp) 21 Tcl_Interp *interp; /* interpreter being initialized */ 23 Rappturegui_Init(Tcl_Interp *interp) /* interpreter being initialized */ 22 24 { 25 #ifdef _WIN32 26 rpWinInitJob(); 27 #endif 28 if (Tcl_InitStubs(interp, "8.4", 0) == NULL) { 29 return TCL_ERROR; 30 } 31 if (Tcl_PkgProvide(interp, "RapptureGUI", PACKAGE_VERSION) != TCL_OK) { 32 return TCL_ERROR; 33 } 23 34 if (RpRlimit_Init(interp) != TCL_OK) { 24 35 return TCL_ERROR; -
trunk/gui/src/RpRlimit.c
r158 r503 16 16 */ 17 17 #include <tcl.h> 18 #ifndef _WIN32 18 19 #include <sys/time.h> 19 20 #include <sys/resource.h> 21 #else 22 #include "RpWinResource.h" 23 #endif 20 24 21 25 #include "bltInt.h" -
trunk/gui/src/RpRusage.c
r158 r503 16 16 */ 17 17 #include <tcl.h> 18 #ifndef WIN32 18 19 #include <sys/time.h> 19 20 #include <sys/resource.h> 21 #else 22 #include "RpWinResource.h" 23 #endif 20 24 21 25 #include "bltInt.h" … … 252 256 return tval; 253 257 } 258 -
trunk/gui/src/RpSignal.c
r193 r503 42 42 int signum; 43 43 } RpSignalNames; 44 45 #ifdef _WIN32 46 #define SIGHUP -1 47 #define SIGQUIT -1 48 #define SIGKILL -1 49 #define SIGPIPE -1 50 #define SIGALRM -1 51 #define SIGUSR1 -1 52 #define SIGUSR2 -1 53 #define SIGCHLD -1 54 #define SIGCONT -1 55 #define SIGSTOP -1 56 #define SIGTSTP -1 57 #define SIGTTIN -1 58 #define SIGTTOU -1 59 #endif 44 60 45 61 static RpSignalNames signalNames[] = {
Note: See TracChangeset
for help on using the changeset viewer.