site_archiver@lists.apple.com Delivered-To: darwin-dev@lists.apple.com Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=YeL6eCTzumnV/xyaAfZsU4ldzHzWpMdoVCTSzJzJZRU=; b=enRHjn6I7LxP3DnPjq3XEFIDrPScvZKfC9oiGQECI5j/0WAV2ArMvAyyeq+Pavyvrs cbi/n07EfQ8G6qTByMxhn3N7SwSegWS4H6Cd1HQseGGR7uzP3vQL50HzVWz0BLUXXTcM aWs0s1S6QAnIfi/GL0h0mPQQhLm/+4Eu6VdC4= Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=Q3vvnwPAwkS6h//1dH99ndVRuicQiBBFS/MPeHfeoyEiAvYKSPTmZpeGb3vambUTuJ Pn8zcntk+RX3uKzlCsvnfyts3u+NrjrjmMU9jQyEkwIU6r+M9rtfzVl2rQkR+A2PAesq 8JDmV6o3XbQRxaatpgVjnTBICu+1OR4yAWH2s= Hi all I want some advice on Inter Process Communication (IPC). I have one dynamic library(dylib) and one application(app). Actually I am porting something from Windows so I will write about windows code. In Application, I create one event object (eventName). Now, I create one thread and call waitForSingleObject and now it is waiting for someone to set the event and the it will come out. In DLL I create one event object of same name (eventName). Now, whenever I need, set the event in DLL then in application that thread comes out of wait and executes the code and again start waiting. I want to implement similar kind of thing in Mac also. I want to create one event with same name in both process and application should notified whenever dylib set the event. I do not know that I have to do with event or something else. DLL is standard C++ dynamic library and application is standard C++ tool (command line utility). Please suggest me to solve this issue. Thanks and regards rksinghal _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/site_archiver%40lists.appl... This email sent to site_archiver@lists.apple.com