diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-13 09:03:31 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-13 09:03:31 (GMT) |
commit | cbd9b876ccfb24791ac9576e49be51c579fa7a23 (patch) | |
tree | 7d872fa5186b327990fa96d969a3b092780f38d2 /unix/tclUnixTest.c | |
parent | 2603994d5d3ad503d97298c7fd1dc8f528694a19 (diff) | |
download | tcl-cbd9b876ccfb24791ac9576e49be51c579fa7a23.zip tcl-cbd9b876ccfb24791ac9576e49be51c579fa7a23.tar.gz tcl-cbd9b876ccfb24791ac9576e49be51c579fa7a23.tar.bz2 |
NRE implementation [Patch 2017110]
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r-- | unix/tclUnixTest.c | 66 |
1 files changed, 65 insertions, 1 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index b3bf457..0e4c4b6 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTest.c,v 1.27 2008/04/27 22:21:35 dkf Exp $ + * RCS: @(#) $Id: tclUnixTest.c,v 1.28 2008/07/13 09:03:41 msofer Exp $ */ #include "tclInt.h" @@ -82,6 +82,8 @@ static int TestgotsigCmd(ClientData dummy, static void AlarmHandler(int signum); static int TestchmodCmd(ClientData dummy, Tcl_Interp *interp, int argc, const char **argv); +static int TeststacklimitCmd(ClientData dummy, + Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); /* *---------------------------------------------------------------------- @@ -122,7 +124,69 @@ TclplatformtestInit( (ClientData) 0, NULL); Tcl_CreateCommand(interp, "testgotsig", TestgotsigCmd, (ClientData) 0, NULL); + Tcl_CreateObjCommand(interp, "teststacklimit", TeststacklimitCmd, + (ClientData) 0, NULL); + return TCL_OK; +} + +/* + *---------------------------------------------------------------------- + * + * TeststacklimitCmd -- + * + * This function implements the "teststacklimit" command. When called + * with no arguments is sets the interp result to the current stack + * limit. When called with an integer argument it will set the stack size + * to the requested number (or the hard limit if it is smaller) and set + * the interp's result to the stack size prevalent before the change. + * Stack sizes are expressed in kB, as in 'ulimit'. + * + * A size of -1 means "unlimited". + * + * Results: + * A standard Tcl result. + * + * Side effects: + * May change the C stack size limit. + * + *---------------------------------------------------------------------- + */ + +static int +TeststacklimitCmd( + ClientData dummy, /* Not used. */ + Tcl_Interp *interp, /* Current interpreter. */ + int objc, /* Number of arguments. */ + Tcl_Obj *const objv[]) /* Argument objects. */ +{ +#define STACK_SCALE 1024 + struct rlimit rlim; + int prev_limit, new_limit, result; + + if (objc > 2) { + Tcl_WrongNumArgs(interp, 1, objv, " ?limit?\""); + return TCL_ERROR; + } + + getrlimit(RLIMIT_STACK, &rlim); + prev_limit = ((rlim.rlim_cur == RLIM_INFINITY) + ? -1 + : (int) (rlim.rlim_cur/STACK_SCALE)); + + if (objc == 2) { + result = Tcl_GetIntFromObj(interp, objv[1], &new_limit); + if (result != TCL_OK) { + return result; + } + rlim.rlim_cur = ((new_limit == -1) + ? RLIM_INFINITY + : STACK_SCALE * (rlim_t) new_limit); + setrlimit(RLIMIT_STACK, &rlim); + } + + Tcl_SetObjResult(interp, Tcl_NewIntObj(prev_limit)); return TCL_OK; +#undef STACK_SCALE } /* |