| 1603 | } |
| 1604 | |
| 1605 | static int Tcl_ops_getNumThreads(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1606 | { |
| 1607 | wrapper->resetCommandLine(argc, 1, argv); |
| 1608 | |
| 1609 | if (OPS_getNumThreads() < 0) return TCL_ERROR; |
| 1610 | |
| 1611 | return TCL_OK; |
| 1612 | } |
| 1613 | |
| 1614 | static int Tcl_ops_setNumThreads(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1615 | { |
nothing calls this directly
no test coverage detected