[go: up one dir, main page]

Menu

[897c37]: / modules / thread.lpc  Maximize  Restore  History

Download this file

53 lines (39 with data), 373 Bytes

#if 0
/*
 * LPC / C interface
 *
 * POSIX Thread interface
 *
 */
#endif

int handle;

reset()
{
    int x;

    handle = load_shared_object("thread.so");
}

query_destruct()
{
    unload_shared_object(handle);
}

start_new_thread(object ob, string func, array args)
{
}

exit_thread()
{
}

allocate_lock()
{
}

get_ident()
{
}

aquire()
{
}

release()
{
}

locked()
{
}