Merge pull request #25 from wheremyfoodat/main

Φτιαχνοντας λαθη μεταγλωττισης στα νηματα π
This commit is contained in:
georgemoralis 2023-07-18 19:48:47 +03:00 committed by GitHub
commit 03892b51a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

1
.gitignore vendored
View File

@ -31,6 +31,7 @@ bld/
[Oo]bj/ [Oo]bj/
[Ll]og/ [Ll]og/
[Ll]ogs/ [Ll]ogs/
[Bb]uild/
# Visual Studio 2015/2017 cache/options directory # Visual Studio 2015/2017 cache/options directory
.vs/ .vs/

View File

@ -3,15 +3,11 @@
#include <sched.h> #include <sched.h>
#include "../../../../types.h" #include "../../../../types.h"
extern "C" {
struct sched_param;
}
namespace HLE::Libs::LibKernel::ThreadManagement { namespace HLE::Libs::LibKernel::ThreadManagement {
struct PthreadAttrInternal; struct PthreadAttrInternal;
using SceKernelSchedParam = struct sched_param; using SceKernelSchedParam = ::sched_param;
using ScePthreadAttr = PthreadAttrInternal*; using ScePthreadAttr = PthreadAttrInternal*;
struct PthreadInternal { struct PthreadInternal {