Worker has parameters
This commit is contained in:
parent
bf35b1c705
commit
9f3d21ac20
|
@ -51,6 +51,10 @@ struct {
|
|||
pthread_t *id;
|
||||
} typedef SchedulerParams_t;
|
||||
|
||||
struct {
|
||||
pthread_t *id;
|
||||
} typedef WorkerParams_t;
|
||||
|
||||
//
|
||||
// Local threads
|
||||
//
|
||||
|
|
|
@ -40,10 +40,9 @@ pthread_t *WorkerInit(SchedulerParams_t *parameters)
|
|||
// -------------------------------------------------------------------------- //
|
||||
static void *LittleWorker(void *params)
|
||||
{
|
||||
SchedulerParams_t *parameters = (SchedulerParams_t*) params;
|
||||
WorkerParams_t *parameters = (WorkerParams_t*) params;
|
||||
int a = 4;
|
||||
|
||||
|
||||
for (int i = 0; i < 45000; i++) {
|
||||
for (int j = i; j < 45000; j++) {
|
||||
a = (a + (long)parameters->id) * i * j;
|
||||
|
|
|
@ -42,11 +42,8 @@ pthread_t *SchedInit(SchedulerParams_t *parameters)
|
|||
static void *GreatScheduler(void *params)
|
||||
{
|
||||
SchedulerParams_t *parameters = (SchedulerParams_t*) params;
|
||||
int a = 4;
|
||||
|
||||
printf("Scheduler id %p: I'm alive!\n", parameters->id);
|
||||
|
||||
|
||||
|
||||
printf("thread %d\n", a);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue