From e6594ab9a3a89a98a06060c9790560b41eb728b1 Mon Sep 17 00:00:00 2001 From: bigbiff bigbiff Date: Sun, 17 Feb 2013 20:18:31 -0500 Subject: change libtar to fork instead of pthread Conflicts: twrpTar.cpp --- twrpTar.hpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'twrpTar.hpp') diff --git a/twrpTar.hpp b/twrpTar.hpp index db9cf9bb8..427e6d1c3 100644 --- a/twrpTar.hpp +++ b/twrpTar.hpp @@ -39,10 +39,10 @@ class twrpTar { int createTar(); int addFile(string fn, bool include_root); int closeTar(bool gzip); - int createTarGZThread(); - int createTarThread(); - int extractTarThread(); - int splitArchiveThread(); + int createTarGZFork(); + int createTarFork(); + int extractTarFork(); + int splitArchiveFork(); void setfn(string fn); void setdir(string dir); private: @@ -65,6 +65,4 @@ class twrpTar { string tardir; string tarfn; string basefn; - typedef int (twrpTar::*ThreadPtr)(void); - typedef void* (*PThreadPtr)(void*); }; -- cgit v1.2.3