Eliminate unused variables to appease compiler.
int PyThread_start_new_thread(void (*func)(void *), void *arg)
{
pth_t th;
- int success;
dprintf(("PyThread_start_new_thread called\n"));
if (!initialized)
PyThread_init_thread();
void PyThread_free_lock(PyThread_type_lock lock)
{
pth_lock *thelock = (pth_lock *)lock;
- int status, error = 0;
dprintf(("PyThread_free_lock(%p) called\n", lock));
void PyThread_free_sema(PyThread_type_sema sema)
{
- int status, error = 0;
struct semaphore *thesema = (struct semaphore *) sema;
dprintf(("PyThread_free_sema(%p) called\n", sema));