]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix mingw build, implement missing destroylock()
authorAlex Brainman <alex.brainman@gmail.com>
Thu, 25 Mar 2010 01:03:10 +0000 (18:03 -0700)
committerRuss Cox <rsc@golang.org>
Thu, 25 Mar 2010 01:03:10 +0000 (18:03 -0700)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/747041

src/pkg/runtime/mingw/thread.c

index 94ffc27521e9d86bdb2345ab8c752006cb5e2c65..9a0bf2a8a64b3ecacf8dc7c7e71f2f532f69bb0a 100644 (file)
@@ -217,6 +217,11 @@ unlock(Lock *l)
        eventunlock(l);
 }
 
+void
+destroylock(Lock *l)
+{
+}
+
 void
 noteclear(Note *n)
 {