Fix cstyle issues in spl-tsd.c
This patch only addresses the issues identified by the style checker in spl-tsd.c. It contains no functional changes. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
3d39d0afab
commit
62e2eb2329
|
@ -1,4 +1,4 @@
|
||||||
/*****************************************************************************\
|
/*
|
||||||
* Copyright (C) 2010 Lawrence Livermore National Security, LLC.
|
* Copyright (C) 2010 Lawrence Livermore National Security, LLC.
|
||||||
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
||||||
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
||||||
|
@ -19,7 +19,8 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License along
|
* You should have received a copy of the GNU General Public License along
|
||||||
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*****************************************************************************
|
*
|
||||||
|
*
|
||||||
* Solaris Porting Layer (SPL) Thread Specific Data Implementation.
|
* Solaris Porting Layer (SPL) Thread Specific Data Implementation.
|
||||||
*
|
*
|
||||||
* Thread specific data has implemented using a hash table, this avoids
|
* Thread specific data has implemented using a hash table, this avoids
|
||||||
|
@ -56,7 +57,7 @@
|
||||||
* so if your using the Solaris thread API you should not need to call
|
* so if your using the Solaris thread API you should not need to call
|
||||||
* tsd_exit() directly.
|
* tsd_exit() directly.
|
||||||
*
|
*
|
||||||
\*****************************************************************************/
|
*/
|
||||||
|
|
||||||
#include <sys/kmem.h>
|
#include <sys/kmem.h>
|
||||||
#include <sys/thread.h>
|
#include <sys/thread.h>
|
||||||
|
|
Loading…
Reference in New Issue