Formatting.

This commit is contained in:
Camilla Berglund 2012-08-15 20:26:09 +02:00
parent 2e789e17e6
commit 12e00876d7

View File

@ -42,12 +42,12 @@ typedef struct
GLFWwindow window; GLFWwindow window;
const char* title; const char* title;
float r, g, b; float r, g, b;
thrd_t ID; thrd_t id;
} Thread; } Thread;
static volatile GLboolean running = GL_TRUE; static volatile GLboolean running = GL_TRUE;
static int thread_start(void* data) static int thread_main(void* data)
{ {
const Thread* thread = (const Thread*) data; const Thread* thread = (const Thread*) data;
@ -102,7 +102,7 @@ int main(void)
glfwSetWindowPos(threads[i].window, 200 + 250 * i, 200); glfwSetWindowPos(threads[i].window, 200 + 250 * i, 200);
if (thrd_create(&threads[i].ID, thread_start, threads + i) != if (thrd_create(&threads[i].id, thread_main, threads + i) !=
thrd_success) thrd_success)
{ {
fprintf(stderr, "Failed to create secondary thread\n"); fprintf(stderr, "Failed to create secondary thread\n");
@ -124,7 +124,7 @@ int main(void)
} }
for (i = 0; i < count; i++) for (i = 0; i < count; i++)
thrd_join(threads[i].ID, &result); thrd_join(threads[i].id, &result);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
} }