Update vendor-sys/illumos/dist to illumos-gate version 13937:6b4f289e7094

Illumos ZFS issues:
 3468 mdb enhancements for zfs development (not relevant for FreeBSD)
This commit is contained in:
Martin Matuska 2013-02-06 08:14:58 +00:00
parent 35f5e42185
commit a277867526

View File

@ -20,6 +20,7 @@
*/
/*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012 by Delphix. All rights reserved.
*/
#ifndef _SYS_REFCOUNT_H
@ -52,8 +53,8 @@ typedef struct refcount {
kmutex_t rc_mtx;
list_t rc_list;
list_t rc_removed;
int64_t rc_count;
int64_t rc_removed_count;
uint64_t rc_count;
uint64_t rc_removed_count;
} refcount_t;
/* Note: refcount_t must be initialized with refcount_create() */