Unverified Commit f96d7dc2 by John Kessenich Committed by GitHub

Merge pull request #1686 from mspang/glslang-fuchsia-build

Port Unix/ossource.cpp to Fuchsia
parents 16948832 d39c040d
...@@ -45,7 +45,10 @@ ...@@ -45,7 +45,10 @@
#include <stdint.h> #include <stdint.h>
#include <cstdio> #include <cstdio>
#include <sys/time.h> #include <sys/time.h>
#if !defined(__Fuchsia__)
#include <sys/resource.h> #include <sys/resource.h>
#endif
namespace glslang { namespace glslang {
...@@ -70,7 +73,7 @@ static void DetachThreadLinux(void *) ...@@ -70,7 +73,7 @@ static void DetachThreadLinux(void *)
// //
void OS_CleanupThreadData(void) void OS_CleanupThreadData(void)
{ {
#ifdef __ANDROID__ #if defined(__ANDROID__) || defined(__Fuchsia__)
DetachThreadLinux(NULL); DetachThreadLinux(NULL);
#else #else
int old_cancel_state, old_cancel_type; int old_cancel_state, old_cancel_type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment