//=-------------------------------------------------------------------------=// // Local worker module // // // // Copyright © 2021 The Gem-graph Project // // // // This file is part of gem-graph. // // // // This program is free software: you can redistribute it and/or modify // // it under the terms of the GNU Affero General Public License as // // published by the Free Software Foundation, either version 3 of the // // License, or (at your option) any later version. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU Affero General Public License for more details. // // // // You should have received a copy of the GNU Affero General Public License // // along with this program. If not, see . // //=-------------------------------------------------------------------------=// #include "../include/base.h" static void *workerMain(void *worker); /* -------------------------------------------------------------------------- */ // -------------------------------------------------------------------------- // // Scheduler init function // // -------------------------------------------------------------------------- // void WorkerInit(Worker_t *worker) { worker->id = (pthread_t*) calloc(1, sizeof(pthread_t)); if (pthread_create(worker->id, NULL, workerMain, worker)) { printLog("Worker #%lu can't be initialized!\n", *(worker->id)); return NULL; } } // -------------------------------------------------------------------------- // // Scheduler thread main function // // -------------------------------------------------------------------------- // static void *workerMain(void *worker) { Worker_t *args; int a = rand()%__INT_MAX__; args = (Worker_t*) worker; printLog("Worker #%lu online\n", *args->id); for (int i = 0; i < 45000; i++) { for (int j = i; j < 45000; j++) { a = (a + (long)args->id) * i * j; } } args->returnValue = a; args->terminated = true; printLog("Worker #%lu offline\n", *args->id); return NULL; }