fix missing syms in ginge_dyn
[ginge.git] / loader / host.c
... / ...
CommitLineData
1/*
2 * GINGE - GINGE Is Not Gp2x Emulator
3 * (C) notaz, 2010-2011,2015
4 *
5 * This work is licensed under the MAME license, see COPYING file for details.
6 */
7#define _GNU_SOURCE 1 // for plat.c
8#include <stdio.h>
9#include <stdarg.h>
10#include <linux/input.h>
11
12#include "../common/libpicofe/input.h"
13#include "../common/libpicofe/linux/in_evdev.h"
14
15#include "header.h"
16#include "realfuncs.h"
17
18// must be affected by realfuncs.h
19#include "../common/libpicofe/input.c"
20#include "../common/libpicofe/linux/plat.c"
21#include "../common/libpicofe/linux/in_evdev.c"
22
23#ifdef PND
24#include "host_pnd.c"
25#elif defined(WIZ)
26#include "host_wiz.c"
27#endif
28
29char **g_argv;
30
31int host_init(void)
32{
33 in_init();
34 host_init_input();
35 in_probe();
36
37 return 0;
38}
39
40int host_read_btns(void)
41{
42 int actions[IN_BINDTYPE_COUNT] = { 0, };
43
44 in_update(actions);
45 host_actions(actions);
46
47 return actions[IN_BINDTYPE_PLAYER12];
48}
49
50void host_forced_exit(int status)
51{
52 // exit() might not be enough because loader and app data is out of sync,
53 // and other threads (which are really processes on this old glibc used)
54 // might not exit properly.
55 char cmd[64];
56
57 printf("forced exit...\n");
58
59 if (g_argv != NULL) {
60 snprintf(cmd, sizeof(cmd), "killall %s", g_argv[0]);
61 system(cmd);
62 usleep(300000);
63 snprintf(cmd, sizeof(cmd), "killall -9 %s", g_argv[0]);
64 system(cmd);
65 }
66 exit(status);
67}
68
69// vim:shiftwidth=2:expandtab