Daemons: Difference between revisions

From iPhone Development Wiki
(Example)
m (→‎References: Daemons and Services Programming Guide)
Line 26: Line 26:


* [[launchd]]
* [[launchd]]
* [https://developer.apple.com/library/mac/documentation/macosx/conceptual/bpsystemstartup/Chapters/Introduction.html#//apple_ref/doc/uid/10000172i-SW1-SW1 Daemons and Services Programming Guide]


[[Category:Daemons]]
[[Category:Daemons]]

Revision as of 22:45, 5 October 2014

Daemons are programs that run as a background process. These programs may or may not have a long life cycle and exist in a paradigm different to tweaks. They do not require to be injected onto other processes, that means that they exist by themselves.

Several tweaks and programs use them such as f.lux, gremlin, rocketbootstrap, SafariDownloadEnabler, ssh.

How to make a daemon

There's two steps: making a program and making a plist for it.

The program

While idle, the program should waste the least possible resources. Remember that it is working along with many other already existing processes.

Given that memory isn't shared across processes, one cannot call functions or get objects freely between processes. To solve this, one must use some form of IPC (notifications, XPC, sockets) to communicate with the daemon.

The plist

Place your plist, following the reverse DNS notation (com.your.daemon), in layout/Library/LaunchDaemons.

To do: table specifying the keys and values.

Examples

References