/* ============================================================================ Name : task.c Author : Heiher Copyright : Copyright (c) 2018 everyone. Description : Task Test ============================================================================ */ #include #include #include #include static int count; static void task1_entry (void *data) { count++; } static void task2_entry (void *data) { count++; } int main (int argc, char *argv[]) { HevTask *task; assert (hev_task_system_init () == 0); task = hev_task_new (-1); assert (task); hev_task_run (task, task1_entry, NULL); task = hev_task_new (-1); assert (task); hev_task_run (task, task2_entry, NULL); hev_task_system_run (); hev_task_system_fini (); assert (count == 2); return 0; }