From a24cf69fd80de1d2ffb0d1860b000b1841f6c01a Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Wed, 24 Mar 2010 18:03:10 -0700 Subject: [PATCH] runtime: fix mingw build, implement missing destroylock() R=golang-dev, rsc CC=golang-dev https://golang.org/cl/747041 --- src/pkg/runtime/mingw/thread.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pkg/runtime/mingw/thread.c b/src/pkg/runtime/mingw/thread.c index 94ffc27521..9a0bf2a8a6 100644 --- a/src/pkg/runtime/mingw/thread.c +++ b/src/pkg/runtime/mingw/thread.c @@ -217,6 +217,11 @@ unlock(Lock *l) eventunlock(l); } +void +destroylock(Lock *l) +{ +} + void noteclear(Note *n) { -- 2.51.0