summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
9f78065)
This fixes planAhead crashing on startup
#include <bits/wordsize.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <bits/wordsize.h>
#include <sys/ipc.h>
#include <sys/sem.h>
+#include <syscall.h>
+#include <linux/personality.h>
#include "usb-driver.h"
#include "config.h"
#include "xpcu.h"
#include "usb-driver.h"
#include "config.h"
#include "xpcu.h"
-#if __WORDSIZE == 32
-int uname (struct utsname *__name) {
- static int (*func) (struct utsname*);
- int ret;
-
- if (!func)
- func = (int (*) (struct utsname*)) dlsym(RTLD_NEXT, "uname");
-
- ret = (*func)(__name);
-
- if (ret == 0 && (!strcmp(__name->machine, "x86_64"))) {
- strcpy(__name->machine, "i686");
- }
-
- return ret;
-}
-#endif
-
/*
* Ugly hack for ISE 12. They don't seem to open /proc/modules with
* open() anymore...
/*
* Ugly hack for ISE 12. They don't seem to open /proc/modules with
* open() anymore...
+
+static void __attribute__ ((constructor)) libusbdriver_init(void) {
+ #if __WORDSIZE == 32
+ struct utsname un;
+ int ret;
+
+ ret = uname(&un);
+
+ if (ret == 0 && (!strcmp(un.machine, "x86_64"))) {
+ DPRINTF("setting 32bit personality\n");
+ (long)syscall(SYS_personality, PER_LINUX32);
+ }
+ #endif
+}