flow-manager: don't set cpu affinity twice

It is already set in the thread creation function.
pull/1401/head
Eric Leblond 10 years ago
parent 8e83d0073e
commit ef3290bb2e

@ -738,8 +738,6 @@ void FlowManagerThreadSpawn()
"FlowManager", 0);
BUG_ON(tv_flowmgr == NULL);
TmThreadSetCPU(tv_flowmgr, MANAGEMENT_CPU_SET);
if (tv_flowmgr == NULL) {
printf("ERROR: TmThreadsCreate failed\n");
exit(1);
@ -900,8 +898,6 @@ void FlowRecyclerThreadSpawn()
"FlowRecycler", 0);
BUG_ON(tv_flowmgr == NULL);
TmThreadSetCPU(tv_flowmgr, MANAGEMENT_CPU_SET);
if (tv_flowmgr == NULL) {
printf("ERROR: TmThreadsCreate failed\n");
exit(1);

Loading…
Cancel
Save