fork() failed (1: Operation not permitted)

前端 未结 2 1227
鱼传尺愫
鱼传尺愫 2021-01-20 04:41

I\'m new to ios. I\'m facing a problem about permission. fork() failed (1: Operation not permitted)

I want to build an open source library implemented in c for ios.

2条回答
  •  灰色年华
    2021-01-20 05:12

    No. Every iOS application is a separate process. You can create new threads, not a new process.

    Also see Porting an application with fork() to pthread_create()

提交回复
热议问题