summaryrefslogtreecommitdiff
path: root/src/platform/platform-generic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform/platform-generic.h')
-rw-r--r--src/platform/platform-generic.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/platform/platform-generic.h b/src/platform/platform-generic.h
new file mode 100644
index 0000000..a8eab6b
--- /dev/null
+++ b/src/platform/platform-generic.h
@@ -0,0 +1,74 @@
+/*--------------------------------------------------------------------
+ * Copyright © 2016 James Hunt <jamesodhunt@ubuntu.com>.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *--------------------------------------------------------------------
+ */
+
+#ifndef _PROCENV_PLATFORM_GENERIC_H
+#define _PROCENV_PLATFORM_GENERIC_H
+
+#include "types.h"
+
+void show_fds_generic (void);
+void show_rlimits_generic (void);
+void show_confstrs_generic (void);
+long get_kernel_bits_generic (void);
+
+#if !defined (PROCENV_PLATFORM_MINIX)
+int get_mtu_generic (const struct ifaddrs *ifaddr);
+#endif
+
+#if defined (PROCENV_PLATFORM_LINUX) || \
+ defined (PROCENV_PLATFORM_BSD) || \
+ defined (PROCENV_PLATFORM_HURD) || \
+ defined (PROCENV_PLATFORM_MINIX)
+
+void show_cpu_affinities_generic (void);
+
+#endif
+
+#if defined (PROCENV_PLATFORM_LINUX) || \
+ defined (PROCENV_PLATFORM_BSD) || \
+ defined (PROCENV_PLATFORM_HURD) || \
+ defined (PROCENV_PLATFORM_MINIX) || \
+ defined (PROCENV_PLATFORM_DARWIN)
+
+void show_pathconfs (ShowMountType what, const char *dir);
+
+#endif
+
+#if defined (PROCENV_PLATFORM_BSD) || \
+ defined (PROCENV_PLATFORM_MINIX) || \
+ defined (PROCENV_PLATFORM_DARWIN)
+
+char *get_mount_opts_generic_bsd (const struct procenv_map64 *opts, uint64_t flags);
+void show_mounts_generic_bsd (ShowMountType what,
+ const struct procenv_map64 *mntopt_map);
+
+#endif
+
+#if defined (PROCENV_PLATFORM_LINUX) || defined (PROCENV_PLATFORM_HURD)
+
+void show_mounts_generic_linux (ShowMountType what);
+int get_canonical_generic_linux (const char *path, char *canonical, size_t len);
+
+#endif /* PROCENV_PLATFORM_LINUX || PROCENV_PLATFORM_HURD */
+
+#if !defined (PROCENV_PLATFORM_DARWIN)
+bool get_time_generic (struct timespec *ts);
+void show_clocks_generic (void);
+#endif
+
+#endif /* _PROCENV_PLATFORM_GENERIC_H */