Posix: Removed unused signal set from port (#528)

Co-authored-by: Jakob Hasse <0xjakob@users.noreply.github.com>
diff --git a/portable/ThirdParty/GCC/Posix/port.c b/portable/ThirdParty/GCC/Posix/port.c
index a9347d3..98b1294 100644
--- a/portable/ThirdParty/GCC/Posix/port.c
+++ b/portable/ThirdParty/GCC/Posix/port.c
@@ -93,7 +93,6 @@
 /*-----------------------------------------------------------*/
 
 static pthread_once_t hSigSetupThread = PTHREAD_ONCE_INIT;
-static sigset_t xResumeSignals;
 static sigset_t xAllSignals;
 static sigset_t xSchedulerOriginalSignalMask;
 static pthread_t hMainThread = ( pthread_t ) NULL;
@@ -527,8 +526,6 @@
     hMainThread = pthread_self();
 
     /* Initialise common signal masks. */
-    sigemptyset( &xResumeSignals );
-    sigaddset( &xResumeSignals, SIG_RESUME );
     sigfillset( &xAllSignals );
 
     /* Don't block SIGINT so this can be used to break into GDB while