I am getting an error in the Console when shutting down a FSEvent monitor
I have verified that [self prefBundlePath] points to a valid directory (a
prefpane bundle).


BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or
directory" - 0x2


-(void)addFileEventCallback
{
    FSEventStreamContext fsStreamContext = {0, self, NULL, NULL, NULL};
        
    fsStream = FSEventStreamCreate (kCFAllocatorDefault, FSEventCallback,
&fsStreamContext, (CFArrayRef) [NSArray arrayWithObject:[self
prefBundlePath]], kFSEventStreamEventIdSinceNow, 3,
kFSEventStreamCreateFlagWatchRoot);
    FSEventStreamScheduleWithRunLoop (fsStream, CFRunLoopGetCurrent(),
kCFRunLoopDefaultMode);
    FSEventStreamStart (fsStream);

}


-(void)removeFileEventCallback
{
    FSEventStreamStop (fsStream);
    FSEventStreamUnscheduleFromRunLoop (fsStream, CFRunLoopGetCurrent(),
kCFRunLoopDefaultMode);
    FSEventStreamInvalidate (fsStream);
    FSEventStreamRelease (fsStream);
}


Ideas?



_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to