mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +00:00
295e5f0682
* Use AltKit to try to enable JIT on iOS * libretro: Add API to check JIT availability on iOS
19 lines
331 B
C
19 lines
331 B
C
//
|
|
// JITSupport.h
|
|
// RetroArchiOS
|
|
//
|
|
// Created by Yoshi Sugawara on 9/25/21.
|
|
// Copyright © 2021 RetroArch. All rights reserved.
|
|
//
|
|
|
|
#ifndef JITSupport_h
|
|
#define JITSupport_h
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool jb_has_debugger_attached(void);
|
|
bool jb_enable_ptrace_hack(void);
|
|
void jb_start_altkit(void);
|
|
|
|
#endif /* JITSupport_h */
|