sc/thread
Tezc e357ed8d06
doc (#26)
* doc
2021-02-03 08:09:50 +03:00
..
2021-01-31 02:52:06 +03:00
2021-02-03 08:09:50 +03:00
2021-02-03 08:09:50 +03:00
2021-01-24 17:56:18 +03:00
2021-02-03 08:09:50 +03:00
2020-12-28 06:18:18 +03:00

Thread

Overview

  • Thread wrapper for Unixes and Windows
Usage

#include "sc_thread.h"

#include <stdio.h>

void* fn(void* arg)
{
    printf("%s \n", (char*) arg);
    return arg;
}

int main(int argc, char *argv[])
{
    struct sc_thread thread;

    sc_thread_init(&thread);
    sc_thread_start(&thread, fn, "first");
    sc_thread_term(&thread);
    return 0;
}