Skip to content

Instantly share code, notes, and snippets.

@khoa-io
Last active September 27, 2022 06:41

Revisions

  1. Hoàng Văn Khoa revised this gist Sep 27, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion pthread_create.h
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    #include <pthread.h>

    int pthread_create(pthread_t *thread,
    int pthread_create(pthread_t *id,
    const pthread_attr_t *attr,
    void *(*start_routine)(void *),
    void *arg);
  2. Hoàng Văn Khoa created this gist Sep 25, 2022.
    6 changes: 6 additions & 0 deletions pthread_create.h
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    #include <pthread.h>

    int pthread_create(pthread_t *thread,
    const pthread_attr_t *attr,
    void *(*start_routine)(void *),
    void *arg);