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... |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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.servicein 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?All reactions