F-Stack / f-stack

F-Stack is an user space network development kit with high performance based on DPDK, FreeBSD TCP/IP stack and coroutine API.
http://www.f-stack.org
Other
3.76k stars 879 forks source link

how to kill dpdk primary process #740

Closed venusgalstar closed 1 year ago

venusgalstar commented 1 year ago

Could you comment in detail about these?

You said "don't hesitate", Yes I did.

But I am not succeed in it.

I will be very appreciate if you provide me shell command on ubuntu to kill dpdk primay process.

jfb8856606 commented 1 year ago

pkill helloworld or pkill -9 helloworld. helloword means your APP name.

Or kill <pid> or kill -9 <pid>. pid means your APP pid.

jfb8856606 commented 1 year ago

If you want to "gracefully" exit the process, you need to analyze your own application logic and develop it yourself.

venusgalstar commented 1 year ago

it could be done by killall -9 process name