Nirvana
Nirvana

Reputation:

Writing daemon in objective c

I need to write a daemon, much like windows service on os x using objective c. Can anyone point to some sample? or guide me about how to do this?

Upvotes: 3

Views: 2549

Answers (1)

Laurent Etiemble
Laurent Etiemble

Reputation: 27889

There is a complete technical note available on the Apple Developer site.

You will find all the needed information, as well as the restrictions for creating, launching and debugging a daemon, whatever its language.

See also this entry on SO.

Upvotes: 2

Related Questions