看别人的代码搞得有点晕,突然有点不确定,再确认一次。
使用 helloworld程序测试一下。
/root/dpdk-16.07/examples/helloworld
一: 只启动一个核心。
[root@DPDK helloworld]# ./build/helloworld -l0
查看结果: 两个线程
[root@DPDK j]# top -H -p `pidof helloworld`
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
root S 0.0 0.2 :00.22 helloworld
root S 0.0 0.2 :00.00 eal-intr-thread
二:启动三个核心
[root@DPDK helloworld]# ./build/helloworld -l0,,
查看结果: 四个线程
[root@DPDK j]# top -H -p `pidof helloworld`
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
root S 0.0 0.2 :00.24 helloworld
root S 0.0 0.2 :00.00 eal-intr-thread
root S 0.0 0.2 :00.00 lcore-slave-
root S 0.0 0.2 :00.01 lcore-slave-
总结: 多了一个eal-intr-thread线程。