|
Last change
on this file since 7 was
2,
checked in by jglee, 11 years ago
|
|
first commit
|
-
Property svn:executable set to
*
|
|
File size:
852 bytes
|
| Line | |
|---|
| 1 | /*************************************************************** |
|---|
| 2 | ** |
|---|
| 3 | ** Broadcom Corp. Confidential |
|---|
| 4 | ** Copyright 2003-2008 Broadcom Corp. All Rights Reserved. |
|---|
| 5 | ** |
|---|
| 6 | ** THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED |
|---|
| 7 | ** SOFTWARE LICENSE AGREEMENT BETWEEN THE USER AND BROADCOM. |
|---|
| 8 | ** YOU HAVE NO RIGHT TO USE OR EXPLOIT THIS MATERIAL EXCEPT |
|---|
| 9 | ** SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. |
|---|
| 10 | ** |
|---|
| 11 | ** File: si_dbg.c |
|---|
| 12 | ** Description: debug functions that can be used in SI |
|---|
| 13 | ** processing. |
|---|
| 14 | ** |
|---|
| 15 | ** Created: 03/08/2001 |
|---|
| 16 | ** |
|---|
| 17 | ** REVISION: |
|---|
| 18 | ** |
|---|
| 19 | ** $Log: $ |
|---|
| 20 | ** |
|---|
| 21 | ** |
|---|
| 22 | ****************************************************************/ |
|---|
| 23 | #include "si_os.h" |
|---|
| 24 | #include "si_dbg.h" |
|---|
| 25 | |
|---|
| 26 | static unsigned long si_debuglevel; |
|---|
| 27 | |
|---|
| 28 | void SI_Dbg_Set_Debug_Level (unsigned long level) |
|---|
| 29 | { |
|---|
| 30 | si_debuglevel = level; |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | unsigned long SI_Dbg_Get_Debug_Level (void) |
|---|
| 34 | { |
|---|
| 35 | return si_debuglevel; |
|---|
| 36 | } |
|---|
| 37 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.