Skip to content

Commit

Permalink
Fix the macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Mar 5, 2024
1 parent f6afcf4 commit bfbc3c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c/macos.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int launch(const LaunchFunc launch_runtime, const size_t argc, const char **argv
pthread_attr_init(&attr);
pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
pthread_create(&thread, &attr, startup_jvm_macos, NULL);
pthread_create(&thread, &attr, launch_on_macos, NULL);
pthread_attr_destroy(&attr);

// Run the AppKit event loop here on the main thread.
Expand Down

0 comments on commit bfbc3c8

Please sign in to comment.