Replies: 1 comment
-
Launching a DBus server application as a separate process is just like launching any application as a separate process. So the question is quite general. You can find literature on this topic on the Internet... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a DBus server application that uses sdbus-c++ bindings. Instead of this application to be run as a systemd service, I want to manually launch this server from an application X, as a separate process. For eg. I want to do the
systemctl start server.service
in my C++ application X.What would be the ideal way, to do this operation? I could think of using the command
system()
. Is there any other way to do this?Beta Was this translation helpful? Give feedback.
All reactions