並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 2 件 / 2件

新着順 人気順

"XPC Services"の検索結果1 - 2 件 / 2件

  • Cocoaの日々: [Mac] Lion から導入された XPC Services

    iOS/iPhone/iPad/MacOSX プログラミング, Objective-C, Cocoaなど Mac OS X 10.7 から XPC Services という仕組みが導入された。 リファレンスによれば XPC Services は単一のアプリケーション専用に利用できる軽量なヘルパーツール(lightweight helper tools)と定義されている。アプリのバンドル内に組み込んで実行時に利用するのでこの点を見れば通常のライブラリと似ている。ライブラリと大きく異なるのは、XPC Services はアプリとは独立して動作していて、XPC Services がクラッシュしてもアプリに影響を与えない点。XPC Services は launchd管理下にあり、起動・停止の他、クラッシュした場合の再起動まで面倒見てくれる。こう見ると XPC Services はOS上のプロセス

      Cocoaの日々: [Mac] Lion から導入された XPC Services
    • Creating XPC Services

      Creating XPC ServicesThe XPC Services API, part of libSystem, provides a lightweight mechanism for basic interprocess communication integrated with Grand Central Dispatch (GCD) and launchd. The XPC Services API allows you to create lightweight helper tools, called XPC services, that perform work on behalf of your application. There are two main reasons to use XPC services: privilege separation and

      1