2016-04-08 14 views
0

thisブログの提案に従ってみました.CPUセットをMacOSの1つのコアに設定していても、時間。そのようなOperative System上の1つのプロセッサでのみスレッドを実行させることは可能ですか?前もって感謝します。MacOSX:スケジューラのアフィニティが機能していないようです

void *th_func(void *arg); 

pthread_t thread; //the thread 
int counted = 0; 

void start() { 
    int* n = (int*)malloc(sizeof(int)); 
    *n = 0; 
    printf("creating on %d.\n",n[0]); 
    pthread_create(&thread,NULL,th_func,((void*) n)); 
} 

void waitall() { 
    pthread_join(thread,NULL); 
} 

int main(int argc, char** args) { 
start(); 
    waitall(); 
return 0; 
} 


void *th_func(void *arg) 
{ 
    cpu_set_t cpuset; 
    int cpu = ((int*)arg)[0]; 
    CPU_ZERO(&cpuset); 
    CPU_SET(cpu , &cpuset); 
    pthread_setaffinity_np(pthread_self(), sizeof(cpuset), &cpuset); 
    printf("Start suffocating on %d.\n",cpu); 
    while(1) { 

    }; 
} 

enter image description here

答えて

0

この質問はIs it possible to set pthread CPU affinity in OS X?と非常によく似ているようです。私はそこの答えがここの質問にも答えてくれると信じています。

+0

いいえ複数のコアが同じpthreadを実行しているようで、単一のコアのアフィニティが提供されたapisで機能しないように見えるので、あなたが指摘したコードの動作が正しいかどうかを尋ねています。 – jackb

関連する問題