Index: libcfa/src/containers/stackLockFree.hfa
===================================================================
--- libcfa/src/containers/stackLockFree.hfa	(revision 04b5cef29b60d0ea2bc49962adba72c424a3e55e)
+++ libcfa/src/containers/stackLockFree.hfa	(revision 68f36f466e0d4b6c66374329d439152ca1c1f7ea)
@@ -32,5 +32,5 @@
 
 forall( otype T | { Link(T) * getNext( T * ); } ) {
-    struct StackLF {
+	struct StackLF {
 		Link(T) stack;
 	}; // StackLF
@@ -56,4 +56,17 @@
 			} // for
 		} // pop
+
+		bool unsafe_remove( StackLF(T) & this, T * node ) with(this) {
+			Link(T) * link = &stack;
+			for() {
+				T * next = link->top;
+				if( next == node ) {
+					link->top = getNext( node )->top;
+					return true;
+				}
+				if( next == 0p ) return false;
+				link = getNext(next);
+			}
+		}
 	} // distribution
 } // distribution
