Skip to content

Instantly share code, notes, and snippets.

@1f0
Created August 1, 2019 13:59
Show Gist options
  • Save 1f0/514084db05ab43914ded37b0eacea2eb to your computer and use it in GitHub Desktop.
Save 1f0/514084db05ab43914ded37b0eacea2eb to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <pthread.h>
void *busy(void *ptr) {
puts("hello");
return NULL;
}
int main() {
pthread_t id;
pthread_create(&id, NULL, busy, "hi");
while (1) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment