瀏覽代碼

SystemMonitor: Use pledge()

Andreas Kling 5 年之前
父節點
當前提交
f848faeec8
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. 10 0
      Applications/SystemMonitor/main.cpp

+ 10 - 0
Applications/SystemMonitor/main.cpp

@@ -49,8 +49,18 @@ static NonnullRefPtr<GWidget> build_graphs_tab();
 
 int main(int argc, char** argv)
 {
+    if (pledge("stdio shared_buffer rpath unix cpath fattr", nullptr) < 0) {
+        perror("pledge");
+        return 1;
+    }
+
     GApplication app(argc, argv);
 
+    if (pledge("stdio shared_buffer rpath unix", nullptr) < 0) {
+        perror("pledge");
+        return 1;
+    }
+
     auto keeper = GWidget::construct();
     keeper->set_layout(make<GBoxLayout>(Orientation::Vertical));
     keeper->set_fill_with_background_color(true);