|
MLT
7.32.0
|
sliced threading processing helper More...
#include "mlt_slices.h"#include "mlt_factory.h"#include "mlt_log.h"#include "mlt_properties.h"#include <pthread.h>#include <sched.h>#include <stdlib.h>#include <unistd.h>Data Structures | |
| struct | mlt_slices_runtime_s |
| struct | mlt_slices_s |
Macros | |
| #define | ENV_SLICES "MLT_SLICES_COUNT" |
| #define | MAX_SLICES 32 |
Enumerations | |
| enum | mlt_schedule_policy { mlt_policy_normal , mlt_policy_rr , mlt_policy_fifo , mlt_policy_nb } |
Functions | |
| void | mlt_slices_run_fifo (int jobs, mlt_slices_proc proc, void *cookie) |
| void | mlt_slices_run_normal (int jobs, mlt_slices_proc proc, void *cookie) |
| void | mlt_slices_run_rr (int jobs, mlt_slices_proc proc, void *cookie) |
| static void * | mlt_slices_worker (void *p) |
Variables | |
| static pthread_mutex_t | g_lock = PTHREAD_MUTEX_INITIALIZER |
| static mlt_slices | globals [mlt_policy_nb] = {NULL, NULL, NULL} |
sliced threading processing helper
Copyright (C) 2016-2022 Meltytech, LLC
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
| #define ENV_SLICES "MLT_SLICES_COUNT" |
| #define MAX_SLICES 32 |
| enum mlt_schedule_policy |
| void mlt_slices_run_fifo | ( | int | jobs, |
| mlt_slices_proc | proc, | ||
| void * | cookie | ||
| ) |
| void mlt_slices_run_normal | ( | int | jobs, |
| mlt_slices_proc | proc, | ||
| void * | cookie | ||
| ) |
| void mlt_slices_run_rr | ( | int | jobs, |
| mlt_slices_proc | proc, | ||
| void * | cookie | ||
| ) |
|
static |
|
static |
|
static |