From ba010851fafea3da0d0655b103158f0a9efe6406 Mon Sep 17 00:00:00 2001 From: Aidan MacDonald Date: Mon, 19 Dec 2022 21:46:52 +0000 Subject: Remove lib/x1000-installer Carrying this library is somewhat of a maintenance burden because some Rockbox APIs are mocked or duplicated in the test suite and thus need to be fixed up when refactoring. It's also unused & incomplete, so there's no good reason to keep it in tree any more. Change-Id: If39c62744b4edc0d81b1b6608ee5df69430e6581 --- lib/x1000-installer/test_lib/core_alloc.c | 72 ------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 lib/x1000-installer/test_lib/core_alloc.c (limited to 'lib/x1000-installer/test_lib/core_alloc.c') diff --git a/lib/x1000-installer/test_lib/core_alloc.c b/lib/x1000-installer/test_lib/core_alloc.c deleted file mode 100644 index 719670f8f2..0000000000 --- a/lib/x1000-installer/test_lib/core_alloc.c +++ /dev/null @@ -1,72 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * Open \______ \ ____ ____ | | _\_ |__ _______ ___ - * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / - * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < - * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ - * \/ \/ \/ \/ \/ - * $Id$ - * - * Copyright (C) 2021 Aidan MacDonald - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY - * KIND, either express or implied. - * - ****************************************************************************/ - -#include "core_alloc.h" -#include - -#define N_POINTERS 100 - -static void* pointers[N_POINTERS]; -struct buflib_callbacks buflib_ops_locked = {NULL, NULL, NULL}; - -int core_alloc(const char* name, size_t size) -{ - (void)name; - - void* mem = malloc(size); - if(!mem) - return -1; - - for(int i = 0; i < N_POINTERS; ++i) { - if(pointers[i]) - continue; - - pointers[i] = mem; - return i + 1; - } - - free(mem); - return -1; -} - -int core_alloc_ex(const char* name, size_t size, struct buflib_callbacks* cb) -{ - (void)cb; - return core_alloc(name, size); -} - -int core_free(int handle) -{ - if(handle > 0) { - free(pointers[handle-1]); - pointers[handle-1] = NULL; - } - - return 0; -} - -void* core_get_data(int handle) -{ - if(handle > 0) - return pointers[handle-1]; - - return NULL; -} -- cgit v1.2.3