Remove UXPDS support

This commit is contained in:
chase
2018-05-15 20:11:08 -05:00
committed by Jon Trulson
parent 0f8233dadd
commit 8a4f389634
319 changed files with 317 additions and 8776 deletions

View File

@@ -80,7 +80,7 @@ char **global_envp;
// This is the PID or TID of the procedure that is
// performing the garbage collection.
//
#if defined(USL) || defined(__uxp__)
#if defined(USL)
int _tt_garbage_id = 0; // TID or PID.
#else
int _tt_garbage_id = -1; // TID or PID.
@@ -2737,7 +2737,7 @@ _tt_run_garbage_collect(int in_parallel)
//
// FORK and EXEC ourself '-G'.
//
#if defined(OPT_BUG_AIX) || defined(OPT_BUG_USL) || defined(OPT_BUG_UXP)
#if defined(OPT_BUG_AIX) || defined(OPT_BUG_USL)
#define vfork fork
#endif
switch (_tt_garbage_id = (int)vfork()) {