summaryrefslogtreecommitdiffstats
path: root/Python/dynload_atheos.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:11:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:11:21 (GMT)
commit6103ab1d0b3361486960f3fa7711f20c91c535f5 (patch)
treec4ab6589e1e01f758500b6a054e19a747d3086cb /Python/dynload_atheos.c
parent194fcf2d15c90ae9ed9cb9e1d95721e6a6e54281 (diff)
downloadcpython-6103ab1d0b3361486960f3fa7711f20c91c535f5.zip
cpython-6103ab1d0b3361486960f3fa7711f20c91c535f5.tar.gz
cpython-6103ab1d0b3361486960f3fa7711f20c91c535f5.tar.bz2
Remove AtheOS support, as per PEP 11 (which claims that all code was removed in Python 3.0).
Diffstat (limited to 'Python/dynload_atheos.c')
-rw-r--r--Python/dynload_atheos.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/Python/dynload_atheos.c b/Python/dynload_atheos.c
deleted file mode 100644
index b01fdfa..0000000
--- a/Python/dynload_atheos.c
+++ /dev/null
@@ -1,47 +0,0 @@
-
-/* Support for dynamic loading of extension modules */
-
-#include <atheos/image.h>
-#include <errno.h>
-
-#include "Python.h"
-#include "importdl.h"
-
-
-const struct filedescr _PyImport_DynLoadFiletab[] = {
- {".so", "rb", C_EXTENSION},
- {"module.so", "rb", C_EXTENSION},
- {0, 0}
-};
-
-dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
- const char *pathname, FILE *fp)
-{
- void *p;
- int lib;
- char funcname[258];
-
- if (Py_VerboseFlag)
- printf("load_library %s\n", pathname);
-
- lib = load_library(pathname, 0);
- if (lib < 0) {
- char buf[512];
- if (Py_VerboseFlag)
- perror(pathname);
- PyOS_snprintf(buf, sizeof(buf), "Failed to load %.200s: %.200s",
- pathname, strerror(errno));
- PyErr_SetString(PyExc_ImportError, buf);
- return NULL;
- }
- PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname);
- if (Py_VerboseFlag)
- printf("get_symbol_address %s\n", funcname);
- if (get_symbol_address(lib, funcname, -1, &p) < 0) {
- p = NULL;
- if (Py_VerboseFlag)
- perror(funcname);
- }
-
- return (dl_funcptr) p;
-}