Kqueue is a scalable event notification interface introduced in FreeBSD 4.1,[1] also supported in NetBSD, OpenBSD, DragonflyBSD, and Mac OS X.
0
votes
1answer
16 views
kevent.ident is unsigned integer while file descriptor is signed?
I have a kevent ev and a int sock = socket(...). When I did ev.ident == sock, the g++47 warned me that warning: comparison between signed and unsigned integer expressions [-Wsign-compare]. What's ...
1
vote
1answer
16 views
how to check the ios app document directory file is reading or not - using KQueue
I have downloaded the file from the some link(the name of file and extension given by dynamically) and store it in my document directory.Now I want to know when the user trying to access/read/write ...
1
vote
1answer
30 views
libevent kqueue doesn't work on fd returned from zmq_getsockopt()
ORIGINAL POST:
I'm writing a service in C programming using libevent and zmq.
Msg is pushed from python code to C service using PUSH-PULL pattern.
fd received from zmq socket:
void *receiver = ...
0
votes
1answer
52 views
using kqueue for EVFILT_USER
I have trouble to understand, how to use kqueue for user space events.
I look for 2 use cases.
Use case 1: Manual Reset event
Use case 2: Auto Reset event
I think I understand, how to use kqueue() ...
0
votes
0answers
27 views
Use kqueue to respond to more than one event type
When an event is registered with kqueue an ID relating to that event
type is supplied; for example a file descriptor is used to identify a file to
watch
int kq;
struct kevent ke;
kq = kqueue();
fd = ...
1
vote
0answers
29 views
Unix - number of events registred in kqueue [closed]
Is there a way how to get number of events, actually registred in kqueue?
1
vote
2answers
55 views
What is the udata field in struct kevent?
I'm emulating a certain functionality of kqueue to handle events in my Centos box (I'm porting some code from FreeBSD), but I'm failing to understand the purpose of void *udata in struct kevent:
...
0
votes
1answer
126 views
Nginx / PHP-FPM kevent() errors in stress testing
G'day,
I'm running a FreeBSD box (9.1-RELEASE) with Nginx (1.2.7_1,1) and PHP-FPM (5.4.12). I'm having big problems with handling concurrent requests using Apache AB:
ab -n 10000 -c 500 ...
2
votes
2answers
177 views
kQueue directory monitoring
I have a kQueue observer on the Documents directory in my app. I am using the kQueue that triggers a callback when the Documents directory contents changes.
here are two of the settings
...
2
votes
1answer
65 views
kqueue tracking file changes - chance of losing events while processing previous ones?
What I'm doing
I'm implementing a python/kqueue-based (FreeBSD) solution to follow changes to a particular logfile, which when the KQ_NOTE_WRITE fflag is met, the change to the file is picked up and ...
1
vote
2answers
187 views
File system watcher for Mac OS X
Currently, we use QFileSystemWatcher, belonging to Qt. Due to the limited support in Mac OS X, it can only notify us two events: directory changed, or file changed.
However, the latter event (file ...
0
votes
1answer
62 views
Child process won't suicide if parent dies
I have a subprocess (running on MacOS) that I want to kill itself if the parent quits, exits, terminates, is killed or crashes. Having followed the advice from How to make child process die after ...
6
votes
2answers
117 views
Kqueue on regular files
Is kqueue (on OS X) useful for reading/writing regular files? I know that epoll is not useful for regular files on Linux, so I'm wondering if the same is true for kqueue.
EDIT: I don't mean ...
0
votes
1answer
73 views
KQueue wrapper for Cocoa
So I want to monitor a single file and as far as I can tell KQueue is the way to do it in Cocoa. I have a partially functioning FSEvents code running, but that monitors the whole folder.
Can anyone ...
0
votes
1answer
390 views
Does OS X not support epoll function?
I'm learning to use epoll function.
But my OS X, Mountain Lion doesn't have a header file, sys/epoll.h.
I'd like to use epoll function on OS X. How Can I use epoll function?
1
vote
1answer
179 views
Kqueue returning both EVFILT_READ and EVFILT_WRITE but I installed separate (ident,filt) pairs
I'm running into an issue that I'm not sure if is expected behavior from kqueue or if it's something I'm doing wrong.
I need to install separate events with kqueue for a single socket file ...
6
votes
2answers
923 views
Watch directory for file changes
I want to monitor a directory (of thousands of files, with about 5 levels of sub directories) for when files are changed. I know I can use the FSEvents API to monitor a directory for when files change ...
1
vote
0answers
111 views
kevent NOTE_DELETE is send when I modify my file
I try to use kqeue and kevent on a file and when my file is modified i will update my software . And when my file is Deleted i delete the link in my software .
So i init kqueue
void myfct(char * ...
0
votes
1answer
126 views
kqueue() and O_NONBLOCK
If you use kqueue(), should you set O_NONBLOCK on your file descriptors? In other words, does kqueue() guarantee that the next I/O operation on a ready file descriptor will not block, regardless of ...
2
votes
1answer
598 views
Watchdog (osx) not notifying on remote network changes
I'm using Watchdog to monitor a network directory, non-recursive, for a specific pattern of files to be created over time. The issue I am seeing is that while it works fantastic when I test locally, ...
4
votes
1answer
135 views
Is there a kqueue()/kevent() equivalent to select()'s “errorfds” set?
I was porting some code from select() to kqueue() today, and I noticed that kevent() doesn't seem to have an analog for select()'s "exception-set" feature.
That is to say, select()'s ...
1
vote
2answers
1k views
How to get folder changes notifications(folder watcher) in cocoa
I am new to Cocoa Application development. I want my application to be notified when any file under a given directory is modified(folder watcher). Modified means deleted, added, content of file is ...
1
vote
1answer
208 views
kqueues on Mac OS X: strange event order
I monitor a file for changes in a separate thread using kqueues/ kevent(2).
(I monitor a Python file for reparsing)
I subscribe as following:
EV_SET(&file_change, pyFileP, EVFILT_VNODE,
...
2
votes
2answers
414 views
Efficient preforked server design with NBIO like epoll, kqueue using libevent
I am planning on writing a 'comet' server for 'streaming' data to clients. I have enhanced one in the past to take advantage of the multi-core CPUs but now I'm starting from scratch. I am planning to ...
2
votes
0answers
260 views
Mac OS X How do I programatically detect if a changed file is still being 'used' by the same process that changed it?
I'm investigating a problem with a utility we've developed. We track a file or a directory and when a change has been made we upload the new version to a central repository. Our utility is similar ...
0
votes
1answer
433 views
Check if file is modified deleted or extended using python select.kqueue()
Hi I am having a hard time understanding how to use the BSD only python module classes select.kqueue and select.kevent to setup a watch for file write events.
I want to a python program to respond ...
1
vote
1answer
120 views
Do NIO selectors use event notifications by default?
I found this article saying OpenJDK uses epoll on linux, but does anybody know if Selector implementations use kqueue, dev/poll etc over traditional polling where available?
4
votes
1answer
1k views
fs.watch via Node 0.5.9 on Mac OSX
I'm running the following on Node v0.5.9:
var fs = require("fs");
fs.watch("/Users/username/testingFsWatcher/",function(event,file) {
console.dir(arguments);
});
I then do:
cd ...
8
votes
2answers
538 views
Writing a file with vim doesn't fire a file change event on OS X
I am using watchdog to monitor .less file change events on OS X. If I change the contents of a .less file with TextMate or Sublime Text the modification event is captured. However, if I edit the ...
2
votes
2answers
145 views
Detect file creation or deletion under given path using python and kqueue on FreeBSD
Given /certain/path/ on a FreeBSD system, I would like python to use kqueue to detect if any files are created or deleted anywhere under that path.
How would I do this?
0
votes
2answers
426 views
File monitor stop after save file
I'm trying to monitor the edition of a single file using kqueue through a wrapper called UKKQueue available here. This wrapper is very simple, here is the test code I'm using:
@implementation ...
0
votes
1answer
327 views
how do I use kevent and select?
kevent's file descriptor returned by kqueue() can be used as input to select() or kevent().
What are the advantages of using this method?
Suppose kevent is waiting on a list of descriptors by using ...
0
votes
2answers
541 views
What are the limitations of kqueue?
The documentation for libev (source) says that:
Kqueue deserves special mention, as at the time of this writing, it was broken on all BSDs except NetBSD (usually it doesn't work reliably with ...
4
votes
1answer
492 views
Is there a good objc library wrapper for File System Events/kqueue that handles recursive watching for me?
I want to write an OSX (Snow Leopard) app that receives notifications when files within a specific directory are changed, and I want access to the path of the specific file that was changed.
I know I ...
3
votes
2answers
1k views
How do I replace select() with kevent() for higher performance?
From the Kqueue Wikipedia Page:
Kqueue provides efficient input and output event pipelines between the kernel and userland. Thus, it is possible to modify event filters as well as receive pending ...
2
votes
2answers
805 views
Reading updated files on the fly in Python
I'm writing two Python scripts that both parse files. One is a standard unix logfile and the other is a binary file. I'm trying to figure out the best way to monitor these so I can read data as soon ...
1
vote
1answer
732 views
kqueue on iphone?
I am porting a linux server to ios. It is a single threaded, event driven design
that uses kqueue on OSX to handle sockets and other events. Is there something
similar on ios?
Thanks!
2
votes
1answer
574 views
Use python select kqueue on OSX to monitor file creation by external application
Typically the transcode of my 1 hr long audio recording sessions to an mp3 file takes twenty odd minutes.
I want to use a python script to execute a series of python code when the OSX application ...
2
votes
2answers
352 views
On iOS, how can an app determine if a file is no longer being written to by another process?
My question is very similar to this one: What is the optimal way to monitor changes in a directory with a kqueue()? but I'm not satisfied with the answer there.
I have a kqueue setup to be notified ...
3
votes
3answers
600 views
Choosing a IPC solution for an event-driven application
I am currently working on a rather large single-threaded, event-based, application designed around epoll under Linux and comparable technologies under other platforms. Currently, whenever we wish two ...
6
votes
2answers
336 views
Haskell concurrency over kqueue
I wrote concurrent application and have caught the error:
buildFdSets: file descriptor out of range
I found out that it is the OS limit on the number of file descriptors in one process, in my ...
0
votes
2answers
369 views
Is there any way to emulate epoll_wait with kqueue/kevent?
I have a list of a bunch of file descriptors that I have created kevents for, and I'm trying to figure out if there's any way to get the number of them that are ready for read or write access.
Is ...
2
votes
2answers
633 views
Are there any major performance differences between epoll and kqueue?
My development machine is a MacBook (which of course has kqueue). However, in production we're running Linux (which of course uses epoll). Obviously, to know the performance characteristics of my ...
2
votes
1answer
300 views
Use kqueue to determine hangup on the other side of the socket or exceptional state of the socket
I've read man 2 kqueue but have not found out how I can get notified about a socket hangup or exceptional condition of the socket without registering it with EVFILT_READ or EVFILT_WRITE. Apart from ...
1
vote
2answers
444 views
triggering kevent by force
I'm using kqueue for socket synchronization in OS X. I can register an event of interest like the following:
struct kevent change;
EV_SET(&change, connected_socket, EVFILT_READ, EV_ADD, 0, NULL, ...
0
votes
1answer
221 views
kqueue NOTE_EXIT doesn't work
I am trying to use Apple's example of using kqueue but the callback is never called unless I start observing the kqueue after the process starts. But the lifetime of the process is short and i need ...
5
votes
1answer
2k views
What is the optimal way to monitor changes in a directory with a kqueue()?
OK: I'm implementing File Sharing in an iPhone OS app, and of course this means filesystem monitoring. Yay!
Basically, the OS copies and/or deletes from and to a directory I can access when the user ...
0
votes
4answers
4k views
serving large file using select, epoll or kqueue
Nginx uses epoll, or other multiplexing techniques(select) for its handling multiple clients, i.e it does not spawn a new thread for every request unlike apache.
I tried to replicate the same in my ...
4
votes
1answer
1k views
revisiting “how do you use aio and epoll together”
following the discussion at http://stackoverflow.com/questions/1825621/how-do-you-use-aio-and-epoll-together-in-a-single-event-loop.
There are in fact 2 "aio" APIs in linux.
There's POSIX aio (the ...
16
votes
4answers
7k views
File-level filesystem change notification in Mac OS X
I want my code to be notified when any file under (either directly or indirectly) a given directory is modified. By "modified", I mean I want my code to be notified whenever a file's contents are ...

