diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 17:36:19 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 17:36:19 +0000 |
commit | e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795 (patch) | |
tree | 18d6567c396b258ca4fb373421168de1588a640a /obj.c | |
parent | 7adc80509c80239802716233f8168d566e278873 (diff) | |
download | rsyslog-e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795.tar.gz rsyslog-e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795.tar.bz2 rsyslog-e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795.zip |
added ability to re-enqueue objects into the queue when a worker thread is
cancelled
Diffstat (limited to 'obj.c')
-rw-r--r-- | obj.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -616,7 +616,9 @@ finalize_it: /* De-Serialize an object. * Params: Pointer to object Pointer (pObj) (like a obj_t**, but can not do that due to compiler warning) - * expected object ID (to check against) + * expected object ID (to check against), a fixup function that can modify the object before it is finalized + * and a user pointer that is to be passed to that function in addition to the object. The fixup function + * pointer may be NULL, in which case none is called. * The caller must destruct the created object. * rgerhards, 2008-01-07 */ |