-
-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to run a function on a given thread #762
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
oleavr
requested changes
Dec 18, 2023
WorksButNotTested
force-pushed
the
run_on_thread2
branch
from
December 19, 2023 20:13
7f2c151
to
759a25d
Compare
oleavr
requested changes
Dec 29, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry it took me a while to review this! Things got quite busy just before Christmas.
oleavr
force-pushed
the
run_on_thread2
branch
from
January 17, 2024 13:13
7bb1e2c
to
016ac0b
Compare
WorksButNotTested
force-pushed
the
run_on_thread2
branch
from
January 18, 2024 10:18
016ac0b
to
bcb432a
Compare
oleavr
force-pushed
the
run_on_thread2
branch
from
January 19, 2024 13:42
bcb432a
to
e6091bd
Compare
WorksButNotTested
force-pushed
the
run_on_thread2
branch
from
January 19, 2024 15:15
e6091bd
to
657ae4c
Compare
(gdb) bt
#0 0x570de920 in test_memory_access_monitor_notify_on_read_access (fixture=0xeff61b78, data=<optimized out>) at ../tests/core/memoryaccessmonitor.c:28
#1 0x571fa8b0 in test_case_run (tc=<optimized out>) at ../../../deps/glib/glib/gtestutils.c:2933
#2 g_test_run_suite_internal (suite=<optimized out>, path=<optimized out>) at ../../../deps/glib/glib/gtestutils.c:3021
#3 0x571faae3 in g_test_run_suite_internal (suite=<optimized out>, path=<optimized out>) at ../../../deps/glib/glib/gtestutils.c:3037
#4 0x571faae3 in g_test_run_suite_internal (suite=<optimized out>, path=<optimized out>) at ../../../deps/glib/glib/gtestutils.c:3037
#5 0x571f9e4a in g_test_run_suite (suite=0xf7e5da40) at ../../../deps/glib/glib/gtestutils.c:3115
#6 0x571f9d14 in g_test_run () at ../../../deps/glib/glib/gtestutils.c:2234
#7 0x570cd345 in main (argc=<optimized out>, argv=<optimized out>) at ../tests/gumtest.c:305
|
WorksButNotTested
force-pushed
the
run_on_thread2
branch
6 times, most recently
from
January 29, 2024 16:35
8d324e3
to
a485997
Compare
Closed
oleavr
force-pushed
the
run_on_thread2
branch
from
February 12, 2024 13:28
a485997
to
72c3403
Compare
WorksButNotTested
force-pushed
the
run_on_thread2
branch
4 times, most recently
from
February 21, 2024 09:53
85854ed
to
73a5574
Compare
oleavr
force-pushed
the
run_on_thread2
branch
from
February 23, 2024 22:21
6444633
to
bf092a9
Compare
Co-authored-by: Ole André Vadla Ravnås <[email protected]>
Co-authored-by: Ole André Vadla Ravnås <[email protected]>
oleavr
force-pushed
the
run_on_thread2
branch
from
February 23, 2024 23:02
1eda23b
to
668827c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Architecture specific code is based on
gum_stalker_infect
, so backend support is quite small. Support for x86, x64, arm and arm64 as well as QuickJS and V8. Includes supporting unit tests.