| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | More work on GTK wrapping (hterm seems to run fine now) | ptitSeb | 2022-03-19 | 1 | -0/+2 |
| | | |||||
| * | Declare my_mmap and my_munmap to avoid warning | mogery | 2021-10-13 | 1 | -0/+4 |
| | | | | | | | | | | This adds a declaration of my_mmap and my_munmap to src/tools/bridge.c in order to avoid a -Wimplicit-function-declaration warning when compiling. This should probably be moved to a header file in the future. | ||||
| * | Fix incorrect brick cleanup | mogery | 2021-10-12 | 1 | -1/+3 |
| | | | | | | | | | FreeBridge used free to clean up the pointer allocated by my_mmap, which is incorrect and lead to a crash upon code that exited gracefully. The free was replaced with my_munmap. | ||||
| * | Map bricks below first 2GB of address space | mogery | 2021-10-12 | 1 | -1/+4 |
| | | | | | | | | | | | | This fixes an issue with mono where JIT compiled code would near-call wrapped libraries, but fail because the difference between PC and the call address did not fit into an imm32. This was fixed by replacing posix_memalign with my_mmap and providing the MAP_32BIT flag. Fixes #131 | ||||
| * | Add some support vor VSyscall | ptitSeb | 2021-09-02 | 1 | -0/+44 |
| | | |||||
| * | Fix non-dynarec build | ptitSeb | 2021-07-05 | 1 | -1/+1 |
| | | |||||
| * | Removed mutex per bridge and use a global one (remove chance of freeze on fork) | ptitSeb | 2021-07-05 | 1 | -7/+4 |
| | | |||||
| * | Improved unloading of libs | ptitSeb | 2021-06-04 | 1 | -0/+2 |
| | | |||||
| * | Fixed GetNativeFnc | ptitSeb | 2021-04-18 | 1 | -2/+2 |
| | | |||||
| * | First pass | rajdakin | 2021-04-14 | 1 | -0/+2 |
| | | |||||
| * | [DYNAREC] Improved Dynablock construction, stopping when overlaping block is ↵ | ptitSeb | 2021-03-28 | 1 | -3/+4 |
| | | | | | detected | ||||
| * | Fixed non-Dynarec build that would crash at start | ptitSeb | 2021-03-25 | 1 | -1/+1 |
| | | |||||
| * | Improvments to bridge handling to avoid deadlock | ptitSeb | 2021-03-18 | 1 | -26/+38 |
| | | |||||
| * | [DYNAREC] Added Basic blocks for dynarec | ptitSeb | 2021-03-14 | 1 | -2/+3 |
| | | |||||
| * | Better functions name resolving when using TRACE, and fixed some printf ↵ | ptitSeb | 2021-03-10 | 1 | -4/+57 |
| | | | | | stuff again | ||||
| * | Added bridge handling | ptitSeb | 2021-03-02 | 1 | -0/+220 |