mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 10:10:57 +00:00
Rename tasks.c to task_queue.c
This commit is contained in:
parent
6e9bc55dd6
commit
4210ee197b
@ -122,7 +122,7 @@ OBJ += frontend/frontend.o \
|
||||
intl/msg_hash_pt.o \
|
||||
intl/msg_hash_us.o \
|
||||
runloop.o \
|
||||
tasks/tasks.o \
|
||||
tasks/task_queue.o \
|
||||
tasks/tasks_internal.o \
|
||||
tasks/task_content.o \
|
||||
tasks/task_file_transfer.o \
|
||||
|
@ -700,7 +700,7 @@ RETROARCH
|
||||
#include "../libretro_version_1.c"
|
||||
#include "../retroarch.c"
|
||||
#include "../runloop.c"
|
||||
#include "../tasks/tasks.c"
|
||||
#include "../tasks/task_queue.c"
|
||||
#include "../tasks/tasks_internal.c"
|
||||
|
||||
#include "../msg_hash.c"
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "../../general.h"
|
||||
#include "../../system.h"
|
||||
#include "../../verbosity.h"
|
||||
#include "../../tasks/tasks.h"
|
||||
|
||||
#ifndef BIND_ACTION_DEFERRED_PUSH
|
||||
#define BIND_ACTION_DEFERRED_PUSH(cbs, name) \
|
||||
|
@ -55,7 +55,7 @@
|
||||
#include "configuration.h"
|
||||
#include "general.h"
|
||||
#include "runloop.h"
|
||||
#include "tasks/tasks.h"
|
||||
#include "tasks/task_queue.h"
|
||||
#include "performance.h"
|
||||
#include "cheats.h"
|
||||
#include "system.h"
|
||||
|
@ -54,7 +54,7 @@
|
||||
|
||||
#include "msg_hash.h"
|
||||
|
||||
#include "tasks/tasks.h"
|
||||
#include "tasks/task_queue.h"
|
||||
#include "input/input_keyboard.h"
|
||||
|
||||
#ifdef HAVE_MENU
|
||||
|
@ -15,7 +15,6 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "tasks_internal.h"
|
||||
|
||||
#include "../command_event.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <retro_file.h>
|
||||
#include <string/stdstring.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "tasks_internal.h"
|
||||
|
||||
#ifdef HAVE_LIBRETRODB
|
||||
#include "../database_info.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <retro_miscellaneous.h>
|
||||
#include <retro_stat.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "tasks_internal.h"
|
||||
#include "../verbosity.h"
|
||||
#include "../msg_hash.h"
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include <string/string_list.h>
|
||||
#include <rhash.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "tasks_internal.h"
|
||||
#include "../verbosity.h"
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include <string/stdstring.h>
|
||||
#include <rhash.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "tasks_internal.h"
|
||||
|
||||
#include "../input/input_config.h"
|
||||
#include "../input/input_overlay.h"
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "task_queue.h"
|
||||
|
||||
#ifdef HAVE_THREADS
|
||||
#include <rthreads/rthreads.h>
|
@ -14,8 +14,8 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef TASKS_HANDLER_H
|
||||
#define TASKS_HANDLER_H
|
||||
#ifndef TASK_QUEUE_H
|
||||
#define TASK_QUEUE_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <boolean.h>
|
@ -18,7 +18,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "task_queue.h"
|
||||
|
||||
#include "../msg_hash.h"
|
||||
#include "../runloop.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <stdint.h>
|
||||
#include <boolean.h>
|
||||
|
||||
#include "tasks.h"
|
||||
#include "task_queue.h"
|
||||
|
||||
#include "../runloop.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user