Hi,
I have a method in an objective-C class. It has 2 callback functions written in C.The C. The class pointer i.e. "self" self is passed to these functions as "void *". . In the C functions I create a pointer of type class and assign the " void *" parameter.
The first callback function executes successfully. But the "void *" pointer becomes "nil" nil in the 2nd callback function. Note that I haven't tweaked pointer in the first callback but still I get "nil" nil in 2nd callback.
Any ideas what might be going wrong?
For example:
kr = IOServiceAddMatchingNotification(gNotifyPort,kIOFirstMatchNotificationIOServiceAddMatchingNotification(gNotifyPort, matchingDict,RawDeviceAdded,NULLkIOFirstMatchNotification,
&gRawAddedIter );
RawDeviceAdded(NULL,gRawAddedIter,self)matchingDict, RawDeviceAdded, NULL,
&gRawAddedIter);
RawDeviceAdded(NULL, gRawAddedIter, self);
This works fine. But below function receives "self" self as "nil".
kr=IOServiceAddMatchingNotification(gNotifyPort,kIOFirstMatchNotificationnil.
kr = IOServiceAddMatchingNotification(gNotifyPort, matchingDict,BulkTestDeviceAdded,NULLkIOFirstMatchNotification,
matchingDict, BulkTestDeviceAdded, NULL,
&gBulkTestAddedIter);
BulkTestDeviceAdded(NULL,gBulkTestAddedIter,self)BulkTestDeviceAdded(NULL, gBulkTestAddedIter, self);
