Skip to content
Snippets Groups Projects
Commit f49ddbca authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

solaris: provide an issig stub

parent b7bdb42c
No related branches found
No related tags found
No related merge requests found
...@@ -31,19 +31,13 @@ ...@@ -31,19 +31,13 @@
#ifdef _KERNEL #ifdef _KERNEL
#include <sys/param.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#include <sys/proc.h>
#include <sys/signalvar.h>
#include <sys/debug.h>
#define FORREAL 0 #define FORREAL 0
#define JUSTLOOKING 1 #define JUSTLOOKING 1
static __inline int static __inline int
issig(int why) issig(int why)
{ {
#if 0 // not sure we care
struct thread *td = curthread; struct thread *td = curthread;
struct proc *p; struct proc *p;
int sig; int sig;
...@@ -61,6 +55,7 @@ issig(int why) ...@@ -61,6 +55,7 @@ issig(int why)
if (sig != 0) if (sig != 0)
return (1); return (1);
} }
#endif
return (0); return (0);
} }
......
...@@ -77,6 +77,7 @@ extern "C" { ...@@ -77,6 +77,7 @@ extern "C" {
#include <sys/fm/util.h> #include <sys/fm/util.h>
#include <sys/sunddi.h> #include <sys/sunddi.h>
#include <sys/priority.h> #include <sys/priority.h>
#include <sys/sig.h>
#define CPU_SEQID (curcpu) #define CPU_SEQID (curcpu)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment