mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-29 13:03:36 +01:00
kernel: do not rely on COMMON sections for GMAPPED refs
Seems to break with binutils 2.35.
This commit is contained in:
parent
e5abe03b89
commit
589c25c10c
2 changed files with 3 additions and 2 deletions
|
@ -135,6 +135,6 @@ void *gint_inthandler(int event_code, void const *handler, size_t size);
|
||||||
@callback Callback function, may take no argument in practice
|
@callback Callback function, may take no argument in practice
|
||||||
@arg Argument
|
@arg Argument
|
||||||
Returns the return value of the callback. */
|
Returns the return value of the callback. */
|
||||||
int (*gint_inth_callback)(int (*function)(void *arg), void *arg);
|
extern int (*gint_inth_callback)(int (*function)(void *arg), void *arg);
|
||||||
|
|
||||||
#endif /* GINT_GINT */
|
#endif /* GINT_GINT */
|
||||||
|
|
|
@ -21,7 +21,8 @@
|
||||||
@conf_intc Configuration function
|
@conf_intc Configuration function
|
||||||
@arg Additional argument for conf_intc
|
@arg Additional argument for conf_intc
|
||||||
Returns the previous VBR address. */
|
Returns the previous VBR address. */
|
||||||
uint32_t (*cpu_setVBR)(uint32_t vbr, void (*conf_intc)(int arg), int arg);
|
extern uint32_t (*cpu_setVBR)(uint32_t vbr, void (*conf_intc)(int arg),
|
||||||
|
int arg);
|
||||||
|
|
||||||
/* cpu_setCPUOPM(): Change the CPU Operation Mode register
|
/* cpu_setCPUOPM(): Change the CPU Operation Mode register
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue