使用 C++ 不正常地重新启动 Mac OS X称呼?

发布于 2024-09-12 14:42:06 字数 197 浏览 14 评论 0原文

如何使用 C++不是 Objetive-C)重新启动 Mac OS X,而不调用任何子进程?不在乎它是否不雅

system("reboot"); //Is not acceptable as it relies on invoking a process

How do I restart Mac OS X using C++ (not Objetive-C) without invoking any child processes? Don't care if it's ungraceful.

system("reboot"); //Is not acceptable as it relies on invoking a process

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伊面 2024-09-19 14:42:06

我不明白为什么你不想创建一个新进程,但如果你真的不想,那么 execve("reboot",0,0) 将运行 重新启动,替换当前进程。您需要包含

我假设这在 Mac 操作系统上可用;它应该在所有 POSIX 平台上。

更新

Mac OS 似乎有一个 重新启动系统调用。 reboot(RB_AUTOBOOT); 可能会执行您想要的操作。否则它可能会损坏您的硬盘。尝试像这样针对操作系统进行操作时要非常小心。

I can't think why you wouldn't want to create a new process, but if you really don't want to, then execve("reboot",0,0) will run reboot, replacing the current process. You'll need to include <unistd.h>.

I'm assuming this is available on Mac OS; it should be on all POSIX platforms.

UPDATE

It appears that Mac OS has a reboot system call. reboot(RB_AUTOBOOT); might do what you want. Or it might trash your hard drive. Be very careful when trying to work against the operating system like this.

吹泡泡o 2024-09-19 14:42:06

JMP 0xFFFF0

:-)

JMP 0xFFFF0

:-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文