-
Notifications
You must be signed in to change notification settings - Fork 566
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
ASSERT core/emit.c:42 on DR with native_exec #1233
Comments
From [email protected] on July 29, 2013 13:53:06 It seems the problem related to trace building. -disable_traces works fine. |
From [email protected] on July 29, 2013 15:51:37 This issue was closed by revision r2221 . Status: Fixed |
From [email protected] on July 31, 2013 09:06:40 More investigation: (gdb) where |
From [email protected] on August 02, 2013 15:09:42 This issue was closed by revision r2232 . |
From [email protected] on July 29, 2013 16:45:59
3 #define NUM_ITERS 10000
4 #define MALLOC_SIZE 8
5
6 int main()
7 {
8 int i, j;
9 void *ptr;
10 for (i = 0; i < NUM_ITERS; i++) {
11 for (j = 0; j < NUM_ITERS; j++) {
12 ptr = malloc(MALLOC_SIZE);
13 free(ptr);
14 }
15 }
16 return 0;
17 }
run dr hybrid mode.
Original issue: http://code.google.com/p/dynamorio/issues/detail?id=1233
The text was updated successfully, but these errors were encountered: