免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: Fofans
打印 上一主题 下一主题

[C] 请求一个C编写的Linux进程管理器! [复制链接]

论坛徽章:
0
11 [报告]
发表于 2008-05-21 19:05 |只看该作者

回复 #7 Fofans 的帖子

这不都是开源的嘛

论坛徽章:
0
12 [报告]
发表于 2008-05-21 19:27 |只看该作者
有么?可是我没有看到过这方面的代码阿!

论坛徽章:
0
13 [报告]
发表于 2008-05-21 20:09 |只看该作者
看来开源开的不够彻底。

论坛徽章:
0
14 [报告]
发表于 2008-05-21 21:15 |只看该作者
哈哈,要钱也可以商量?我还真不舍得白给你这个帖子。
请google引擎搜索“ps.c”
如果真的要学编程,不能不动手哇。
另附:
来自:http://www.koders.com/ 的代码,一个微缩的小型ps命令。其实我本来也没有想过要做这个,多谢你的问题让我得到了提高!

  1. /*
  2. * ps.c
  3. *
  4. * Copyright 1998 Alistair Riddoch
  5. * [email]ajr@ecs.soton.ac.uk[/email]
  6. *
  7. * This file may be distributed under the terms of the GNU General Public
  8. * License v2, or at your option any later version.
  9. */

  10. /*
  11. * This is a small version of ps for use in the ELKS project.
  12. * It is not fully functional, and it is not portable.
  13. */

  14. #include <linuxmt/mem.h>
  15. #include <linuxmt/sched.h>
  16. #include <unistd.h>
  17. #include <fcntl.h>
  18. #include <sys/stat.h>
  19. #include <sys/types.h>
  20. #include <stdio.h>
  21. #include <pwd.h>

  22. int read_task(fd, off, ds, task_table)
  23. int fd;
  24. unsigned int off;
  25. unsigned int ds;
  26. struct task_struct * task_table;
  27. {
  28.         unsigned int i;
  29.         off_t addr;

  30.         addr = (off_t) (((off_t)ds << 4) + off);
  31.         if (!(addr == lseek(fd, addr, SEEK_SET))) {
  32.                 return -1;
  33.         }
  34.         if (!read(fd, task_table, sizeof (struct task_struct))) {
  35.                 return -1;
  36.         }
  37. }

  38. int get_name(fd, seg, off)
  39. int fd;
  40. unsigned int seg;
  41. unsigned int off;
  42. {
  43.         int i, j;
  44.         unsigned int strptr;
  45.         off_t addr;
  46.         int * d;
  47.         char dbuf[64];

  48.         addr = (off_t) (((off_t)seg << 4) + (off_t)off);
  49.         if (!(addr = lseek(fd, addr, SEEK_SET))) {
  50.                 return -1;
  51.         }
  52.         if ((i = read(fd, &strptr, 2 )) != 2) {
  53.                 return -1;
  54.         }
  55.         addr = (off_t) (((off_t)seg << 4) + (off_t)strptr);
  56.         if (!lseek(fd, addr, SEEK_SET)) {
  57.                 return -1;
  58.         }
  59.         if ((i = read(fd, dbuf, 64 )) != 64) {
  60.                 return -1;
  61.         }
  62.         printf("%s \n",dbuf);
  63. }


  64. int main(argc, argv)
  65. int argc;
  66. char ** argv;
  67. {
  68.         int i, fd;
  69.         unsigned int j, ds, off;
  70.         unsigned long addr;
  71.         struct task_struct task_table;
  72.         struct passwd * pwent;

  73.         if ((fd = open("/dev/kmem", O_RDONLY)) < 0) {
  74.                 perror("ps");
  75.                 exit(1);
  76.         }
  77.         if ((i = ioctl(fd, MEM_GETDS, &ds))) {
  78.                 perror("ps");
  79.                 exit(1);
  80.         }
  81.         if ((i = ioctl(fd, MEM_GETTASK, &off))) {
  82.                 perror("ps");
  83.                 exit(1);
  84.         }

  85.         for (j = off, i = 0; i < 20; j += sizeof(struct task_struct), i++) {
  86.                 if (read_task(fd, j, ds, &task_table) == -1) {
  87.                         perror("ps");
  88.                         exit(1);
  89.                 }
  90.                 if (task_table.t_kstackm != KSTACK_MAGIC) {
  91.                         break;
  92.                 }
  93.                 if (task_table.t_regs.ss == 0) {
  94.                         continue;
  95.                 }
  96.                 if (task_table.state != TASK_UNUSED) {
  97.                         pwent = (getpwuid(task_table.uid));
  98.                         printf("%5d %5d %-8s %c %5u ",
  99.                                 task_table.pid,
  100.                                 task_table.pgrp,
  101.                                 (pwent ? pwent->pw_name : "unknown"),
  102.                                 ((task_table.state == TASK_RUNNING) ? 'R' : 'S'),
  103.                                 task_table.t_inode);
  104.                         if(task_table.mm.flags & DS_SWAP)
  105.                                 printf("[data swapped] \n");
  106.                         else
  107.                                 get_name(fd, task_table.t_regs.ss, task_table.t_begstack + 2);
  108.                         fflush(stdout);
  109.                 }
  110.         }
  111.         exit(0);
  112. }
复制代码

论坛徽章:
0
15 [报告]
发表于 2008-05-21 21:20 |只看该作者
原帖由 Fofans 于 2008-5-21 18:47 发表
是毕设的一部分,我差了好多资料,都查不到。由于平时编程动手的不多,现在只能求助各位大虾了。希望各位千万不吝赐教阿!小菜感激不尽!


呵呵,过两天就要答辩了。
不过你把论文写好点,应该可以蒙混过去吧?再说了,你说的这个进程管理器,有什么功能?你都不写出来,让大家怎么帮你呢?

论坛徽章:
0
16 [报告]
发表于 2008-05-21 21:54 |只看该作者
看下ps的源代码好了

论坛徽章:
0
17 [报告]
发表于 2008-05-21 21:57 |只看该作者
procps 包里面就有 ps、top 等源代码
http://procps.sourceforge.net/procps-3.2.7.tar.gz
自已看去

论坛徽章:
0
18 [报告]
发表于 2008-05-22 12:07 |只看该作者
谢谢14楼!我的进程管理器功能是要实现检查每个进程的安全系数,然后根据那个安全系数判定是不是要kill那个进程。

论坛徽章:
0
19 [报告]
发表于 2008-05-22 12:12 |只看该作者
根据各位大虾的建议,我自己也深刻感觉到,我一定要好好动手,争取以后尽量少发这样地贴子了。真的非常感谢各位队伍哦的无私帮助!

论坛徽章:
0
20 [报告]
发表于 2008-05-24 11:13 |只看该作者
你提需求好歹也要把需求说的清楚一点仔细一点。谁知道你想做的是个什么玩艺
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP