diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-04-09 13:39:13 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-04-09 13:39:13 +0200 |
| commit | fcfd90b86fc5328c6c5c61e2921416c3cc8adba2 (patch) | |
| tree | c2768dc14e4d749d73c9f5131dfff16e73c9bc7e /src | |
| parent | 738d22a68a9ea921a283f03f62261d97f497fc86 (diff) | |
| download | box64-fcfd90b86fc5328c6c5c61e2921416c3cc8adba2.tar.gz box64-fcfd90b86fc5328c6c5c61e2921416c3cc8adba2.zip | |
Fix NOALIGN build
Diffstat (limited to 'src')
| -rwxr-xr-x | src/libtools/threads.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libtools/threads.c b/src/libtools/threads.c index 7b3a0c80..ce53d9d9 100755 --- a/src/libtools/threads.c +++ b/src/libtools/threads.c @@ -245,6 +245,8 @@ static void* pthread_routine(void* p) pthread_attr_t* getAlignedAttr(pthread_attr_t* m) { return m; } +void freeAlignedAttr(void* attr) { +} #else typedef struct aligned_attr_s { uint64_t sign; |