summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2013-07-04 05:32:13 +0400
committerIgor Pashev <pashev.igor@gmail.com>2013-07-04 05:32:13 +0400
commit9941fe2cd7f37f66dbebd2df02360de9b69c97e2 (patch)
tree3c8302786c4f017ee2e13b1906d659a495bcc93f
parent43d9cdc8e7241e1b842428f269c7038e5d50407c (diff)
downloadhtop-9941fe2cd7f37f66dbebd2df02360de9b69c97e2.tar.gz
Added sysdeps/solaris.c with dummy IO priority functions
-rw-r--r--sysdeps/solaris.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sysdeps/solaris.c b/sysdeps/solaris.c
new file mode 100644
index 0000000..89cc9f2
--- /dev/null
+++ b/sysdeps/solaris.c
@@ -0,0 +1,13 @@
+#include "htop-sysdeps.h"
+
+/* dummy */
+IOPriority sysdep_get_ioprio(pid_t p)
+{
+ return 1;
+}
+
+/* dummy */
+void sysdep_set_ioprio(pid_t p, IOPriority ioprio)
+{
+}
+