summaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
Diffstat (limited to 'fastos')
-rw-r--r--fastos/.gitignore11
-rw-r--r--fastos/CMakeLists.txt7
-rw-r--r--fastos/OWNERS2
-rw-r--r--fastos/README4
-rw-r--r--fastos/src/.gitignore3
-rw-r--r--fastos/src/vespa/fastos/.gitignore28
-rw-r--r--fastos/src/vespa/fastos/CMakeLists.txt15
7 files changed, 0 insertions, 70 deletions
diff --git a/fastos/.gitignore b/fastos/.gitignore
deleted file mode 100644
index 54e2680a6d8..00000000000
--- a/fastos/.gitignore
+++ /dev/null
@@ -1,11 +0,0 @@
-*.ilk
-*.pdb
-.Build_completed
-.Dist_completed
-.Install_completed
-.PreBuild_completed
-bin
-include
-lib
-update.log
-Makefile
diff --git a/fastos/CMakeLists.txt b/fastos/CMakeLists.txt
deleted file mode 100644
index 60813c569e4..00000000000
--- a/fastos/CMakeLists.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_define_module(
- LIBS
- src/vespa/fastos
-
- TESTS
-)
diff --git a/fastos/OWNERS b/fastos/OWNERS
deleted file mode 100644
index 912f61c59b8..00000000000
--- a/fastos/OWNERS
+++ /dev/null
@@ -1,2 +0,0 @@
-baldersheim
-arnej27959
diff --git a/fastos/README b/fastos/README
deleted file mode 100644
index ed9afabffb8..00000000000
--- a/fastos/README
+++ /dev/null
@@ -1,4 +0,0 @@
-Old OS abstraction layer
-
-obsolete, to be replaced with implementations using
-standard C++14 threads and newer unix networking APIs
diff --git a/fastos/src/.gitignore b/fastos/src/.gitignore
deleted file mode 100644
index 2e8e6fd906a..00000000000
--- a/fastos/src/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-/Makefile.ini
-/config_command.sh
-/project.dsw
diff --git a/fastos/src/vespa/fastos/.gitignore b/fastos/src/vespa/fastos/.gitignore
deleted file mode 100644
index 004799df5b4..00000000000
--- a/fastos/src/vespa/fastos/.gitignore
+++ /dev/null
@@ -1,28 +0,0 @@
-*.So
-*.core
-*.exe
-*.ilk
-*.pdb
-.depend
-.depend.NEW
-Debug
-Makefile
-Makefile.factory
-Makefile.overrides
-Makefile.pre
-Release
-autoconf.h
-config_command.bat
-config_command.sh
-fastconfig
-fastconfig.exe
-fastos.lib
-fastosconfig.h
-libfastos.a
-makefeatures
-makemake
-processtest.log
-test.txt
-vc60.idb
-vc60.pdb
-/libfastos.so.5.1
diff --git a/fastos/src/vespa/fastos/CMakeLists.txt b/fastos/src/vespa/fastos/CMakeLists.txt
deleted file mode 100644
index 29810a4f296..00000000000
--- a/fastos/src/vespa/fastos/CMakeLists.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_library(fastos_objects OBJECT
- SOURCES
-)
-
-vespa_add_library(fastos
- SOURCES
- $<TARGET_OBJECTS:fastos_objects>
- INSTALL lib64
- DEPENDS
- ${CMAKE_DL_LIBS}
-)
-
-find_package(Threads REQUIRED)
-target_link_libraries(fastos PUBLIC ${CMAKE_THREAD_LIBS_INIT})