进程线程性能对比?创建和销毁测试
作者:网络转载 发布时间:[ 2015/5/11 10:38:23 ] 推荐标签:软件测试
多进程和多线程信能测试
创建然后终止进程50000次
创建进程代码
// fork.c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#define NFORKS 50000
void do_nothing()
{
int i;
i= 0;
}
int main(int argc, char *argv[])
{
int pid, i, status;
for (i=0; i<NFORKS; i++) {
/*** error handling ***/
if ((pid = fork()) < 0 ) {
printf ("fork failed with error code= %d
", pid);
exit(0);
}
/*** this is the child of the fork ***/
else if (pid ==0) {
do_nothing();
exit(0);
}
/*** this is the parent of the fork ***/
else {
waitpid(pid, &status, 0);
}
}
exit(0);
}
创建线程代码
创建然后终止线程50000次
// pthread_create.c
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define NTHREADS 50000
void *do_nothing(void *null)
{
int i;
i=0;
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
int rc, i;
pthread_t tid;
for (i=0; i<NTHREADS; i++) {
rc = pthread_create(&tid, NULL, do_nothing, NULL);
if (rc) {
printf("ERROR; return code from pthread_create() is %d
", rc);
exit(-1);
}
/* Wait for the thread */
rc = pthread_join(tid, NULL);
if (rc) {
printf("ERROR; return code from pthread_join() is %d
", rc);
exit(-1);
}
}
pthread_exit(NULL);
}
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11