summaryrefslogtreecommitdiffhomepage
path: root/arch/nt32/psxglue.h
blob: 1bf6ed37d3140e65a68910c49321043cfc636b1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef _PSXGLUE_H_
#define _PSXGLUE_H_

#define __PSXOPT_NATIVE		0x0
#define __PSXOPT_POSIX		0x1
#define __PSXOPT_DINGA		0x2
#define __PSXOPT_LDSO		0x4
#define __PSXOPT_VRFS		0x8

struct __ldso_vtbl {
	int	(*dladdr)	(const void * addr, void * info);
	int	(*dlinfo)	(void * dso, int req, void * res);
	void *	(*dlsym)	(void * p, const char * s, void * ra);
	void *	(*dlopen)	(const char * file, int mode, const char ** pathv, int * status);
	int	(*dlclose)	(void *p);
	char *	(*dlerror)	(void);
	void	(*reset_tls)	(void);
};

struct __psx_vtbl {
	void	(*do_global_ctors_fn)	();
	void	(*do_global_dtors_fn)	();
	int	(*start_main)		(void *, int, char **, int (*)(void *, int, char **));
	void	(*convert_thread)	(void);
	void	(*unmapself)		(void *, void *);
	ssize_t	(*log_output)		(void *, ssize_t);
};

struct __tlca_abi {
	void *	pthread_self;
	int *	pthread_set_child_tid;
	int *	pthread_clear_child_tid;
	char *	pthread_tls;
	char **	pthread_dtls;
};

struct __psx_context {
	int				size;
	int				options;
	void *				refaddr;
	void *				ldsoaddr;
	const unsigned short *		ctty;
	void **				sys_vtbl;
	const struct __ldso_vtbl *	ldso_vtbl;
	const struct __psx_vtbl *	psx_vtbl;
	unsigned int			teb_sys_idx;
	unsigned int			teb_libc_idx;
	void *				pthread_surrogate_fn;
	void *				pthread_create_fn;
};

typedef int __psx_init_routine(
	int *			argc,
	char ***		argv,
	char ***		envp,
	struct __psx_context *	ctx);

#endif