Commit a24cf69f authored by Alex Brainman's avatar Alex Brainman Committed by Russ Cox

runtime: fix mingw build, implement missing destroylock()

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/747041
parent 623dfd1b
...@@ -217,6 +217,11 @@ unlock(Lock *l) ...@@ -217,6 +217,11 @@ unlock(Lock *l)
eventunlock(l); eventunlock(l);
} }
void
destroylock(Lock *l)
{
}
void void
noteclear(Note *n) noteclear(Note *n)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment