Rename tasks.c to task_queue.c

This commit is contained in:
twinaphex 2016-02-09 17:55:15 +01:00
parent 6e9bc55dd6
commit 4210ee197b
14 changed files with 12 additions and 15 deletions

View File

@ -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 \

View File

@ -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"

View File

@ -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) \

View File

@ -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"

View File

@ -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

View File

@ -15,7 +15,6 @@
#include <stdlib.h>
#include "tasks.h"
#include "tasks_internal.h"
#include "../command_event.h"

View File

@ -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"

View File

@ -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"

View File

@ -25,7 +25,6 @@
#include <string/string_list.h>
#include <rhash.h>
#include "tasks.h"
#include "tasks_internal.h"
#include "../verbosity.h"

View File

@ -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"

View File

@ -18,7 +18,7 @@
#include <stdlib.h>
#include <stdarg.h>
#include "tasks.h"
#include "task_queue.h"
#ifdef HAVE_THREADS
#include <rthreads/rthreads.h>

View File

@ -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>

View File

@ -18,7 +18,7 @@
#include <stdlib.h>
#include <stdarg.h>
#include "tasks.h"
#include "task_queue.h"
#include "../msg_hash.h"
#include "../runloop.h"

View File

@ -19,7 +19,7 @@
#include <stdint.h>
#include <boolean.h>
#include "tasks.h"
#include "task_queue.h"
#include "../runloop.h"