diff options
author | comex | 2015-07-10 22:38:44 -0400 |
---|---|---|
committer | comex | 2015-07-10 22:38:44 -0400 |
commit | d88b91519b96d8accdbfc4216010d0a42343ca33 (patch) | |
tree | ac54e2a5a8d35b981aeda828230b39f0d92c4129 /lib/substitute.h | |
parent | Avoid issues with the system time changing (diff) | |
download | substitute-d88b91519b96d8accdbfc4216010d0a42343ca33.tar.gz |
stuff!
Diffstat (limited to 'lib/substitute.h')
-rw-r--r-- | lib/substitute.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/substitute.h b/lib/substitute.h index f75aa82..6b7b9f4 100644 --- a/lib/substitute.h +++ b/lib/substitute.h @@ -124,7 +124,7 @@ enum { * other similar library which cares about atomicity, noticing the same * concern, would independently come up with the same restriction - at least, * if they do not find an easier method to avoid deadlocks. Note that all - * existing hooking libraries I know of do not attempt to do any + * existing hooking libraries I know of make no attempt to do any * synchronization at all; this is fine if hooking is only done during * initialization while the process is single threaded, but I want to properly * support dynamic injection. (Note - if there is such an easier method on OS @@ -280,7 +280,7 @@ int substitute_interpose_imports(const struct substitute_image *handle, * @old_ptr optional - out pointer to the 'old implementation'. * If there is no old implementation, a custom IMP is * returned that delegates to the superclass. This IMP can - * be freed if desired with imp_removeBlock. + * be freed if desired with substitute_free_created_imp. * @created_imp_ptr optional - out pointer to whether a fake superclass-call * IMP has been placed in <old_ptr> * |