Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorVlad Brezae <brezaevlad@gmail.com>2014-11-19 04:32:24 +0300
committerVlad Brezae <brezaevlad@gmail.com>2014-11-19 04:36:50 +0300
commit3c1147121efc42ea5b47557084c2680ff11af492 (patch)
tree4e9e93e8bb56024ee05bebb948454caa23776e58 /tools
parent672a02e1779f2c37edee7bf6f8ecb58f888f3cc5 (diff)
[sgen] Fix binary protocol build
Diffstat (limited to 'tools')
-rw-r--r--tools/sgen/sgen-grep-binprot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/sgen/sgen-grep-binprot.c b/tools/sgen/sgen-grep-binprot.c
index e881fd02f9e..75777315688 100644
--- a/tools/sgen/sgen-grep-binprot.c
+++ b/tools/sgen/sgen-grep-binprot.c
@@ -180,7 +180,7 @@ print_entry (int type, void *data)
}
case SGEN_PROTOCOL_PIN_STAGE: {
SGenProtocolPinStage *entry = data;
- printf ("pin stage addr ptr %p addr %p thread %p\n", entry->addr_ptr, entry->addr, entry->thread);
+ printf ("pin stage addr ptr %p addr %p\n", entry->addr_ptr, entry->addr);
break;
}
case SGEN_PROTOCOL_PIN: {
@@ -339,7 +339,7 @@ is_match (gpointer ptr, int type, void *data)
}
case SGEN_PROTOCOL_PIN_STAGE: {
SGenProtocolPinStage *entry = data;
- return ptr == entry->addr_ptr || ptr == entry->addr || ptr == entry->thread;
+ return ptr == entry->addr_ptr || ptr == entry->addr;
}
case SGEN_PROTOCOL_PIN: {
SGenProtocolPin *entry = data;