VDKQueue
VDKQueue copied to clipboard
A modern, streamlined, faster version of UKKQueue
This removes the remaining warnings I can see in VDKQueue, as well as some general cleanup. I also had to add an autorelease pool, because now that the system frameworks...
Minimal changes for ARC and non-ARC compatibility.
Minimal changes to address Xcode warnings: a. Declaration of instance variables in the interface is deprecated b. Property is assumed atomic by default c. Use of undeclared identifier 'NSWorkspace' d....
Unifying the usage of tabs and spaces using Xcode defaults: **cmd+a** → **cmd+x** → **cmd+v**
9e2523271b0a8b6bfb3fb904f10a021253311fd4 didn't quite fix all the warnings, here are the last few. Cheers, See #3 and #2 for more info/discussion
``` // I was receiving about 3 EXC_BAD_ACCESS (SIGSEGV) crash reports a month that listed the 'path' objc_msgSend ``` A sequence which will generate this is: VDKQueue deallocs _keepWatcherThreadRunning =...
Hi I have a possibly silly question. I want to monitor a folder and get notified when there is any files added, deleted. modified. with VDKQueue, I think I could...
I think it's because of Foundation being built with ARC enabled. This makes it so that some objects that weren't going through an autorelease pool now do, causing the NSThread...