Fix regress_iocp.c usage of old lock allocation macros.

This commit is contained in:
unknown 2009-12-02 01:22:07 -05:00
parent bd6f1babf7
commit 31687b4d8a

View File

@ -103,8 +103,8 @@ test_iocp_port(void *ptr)
memset(&o1, 0, sizeof(o1));
memset(&o2, 0, sizeof(o2));
EVTHREAD_ALLOC_LOCK(o1.lock);
EVTHREAD_ALLOC_LOCK(o2.lock);
EVTHREAD_ALLOC_LOCK(o1.lock, EVTHREAD_LOCKTYPE_RECURSIVE);
EVTHREAD_ALLOC_LOCK(o2.lock, EVTHREAD_LOCKTYPE_RECURSIVE);
tt_assert(o1.lock);
tt_assert(o2.lock);