diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2003-09-23 00:52:40 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-23 04:51:15 +0000 |
commit | a39edb3a769a3bc21a4520eb644de9c4401c3e22 (patch) | |
tree | 46ad5568623d135d6bd61c176868c2055f4c0d99 /ext | |
parent | 94b00aa4f6d0e3121d1899787c01f0f36ecb4f6e (diff) | |
download | perl-a39edb3a769a3bc21a4520eb644de9c4401c3e22.tar.gz |
RC5 and Intel's ICC
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
(the missing void return type)
p4raw-id: //depot/perl@21327
Diffstat (limited to 'ext')
-rw-r--r-- | ext/threads/shared/shared.xs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/threads/shared/shared.xs b/ext/threads/shared/shared.xs index f20c581c74..b19da1e6f2 100644 --- a/ext/threads/shared/shared.xs +++ b/ext/threads/shared/shared.xs @@ -61,6 +61,7 @@ recursive_lock_init(pTHX_ recursive_lock_t *lock) COND_INIT(&lock->cond); } +void recursive_lock_destroy(pTHX_ recursive_lock_t *lock) { MUTEX_DESTROY(&lock->mutex); |