diff options
author | cwb <none@none> | 2007-07-13 04:56:35 -0700 |
---|---|---|
committer | cwb <none@none> | 2007-07-13 04:56:35 -0700 |
commit | a1af7ba02a81ee5af0f2cd6b30b99957a93fc605 (patch) | |
tree | d6271e21eafb90eddbbd73adae794b57dd8c0033 /usr/src/uts/common/os/softint.c | |
parent | 8e2accd0e57371254cfb396be303067a1ece53f3 (diff) | |
download | illumos-joyent-a1af7ba02a81ee5af0f2cd6b30b99957a93fc605.tar.gz |
6317341 KMDB uses siron (and children), which can be traced by DTrace
6565142 Need to remove unused code in the PSMs softint handling area
6578650 usr/src/uts/common/io/avintr.c needs to be cstyle clean with continuation line checking
Diffstat (limited to 'usr/src/uts/common/os/softint.c')
-rw-r--r-- | usr/src/uts/common/os/softint.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr/src/uts/common/os/softint.c b/usr/src/uts/common/os/softint.c index 8169082adf..45bcbe1754 100644 --- a/usr/src/uts/common/os/softint.c +++ b/usr/src/uts/common/os/softint.c @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -82,6 +81,7 @@ static kmutex_t softcall_lock; static void (*kdi_softcall_func)(void); extern void siron(void); +extern void kdi_siron(void); void softcall_init(void) @@ -152,7 +152,7 @@ kdi_softcall(void (*func)(void)) kdi_softcall_func = func; if (softhead == NULL) - siron(); + kdi_siron(); } /* |