home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / rkrm.lha / RKRM / Exec_Library / Tasks / tasklist.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  6KB  |  152 lines

  1. ;/* tasklist.c - Execute me to compile me with SAS C 5.10
  2. LC -b1 -cfistq -v -y -j73 tasklist.c
  3. Blink FROM LIB:c.o,tasklist.o TO tasklist LIBRARY LIB:LC.lib,LIB:Amiga.lib
  4. quit ;
  5.  
  6. tasklist.c - Snapshots and prints the ExecBase task list
  7.  
  8.  
  9. Copyright (c) 1992 Commodore-Amiga, Inc.
  10.  
  11. This example is provided in electronic form by Commodore-Amiga, Inc. for
  12. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  13. published by Addison-Wesley (ISBN 0-201-56774-1).
  14.  
  15. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  16. information on the correct usage of the techniques and operating system
  17. functions presented in these examples.  The source and executable code
  18. of these examples may only be distributed in free electronic form, via
  19. bulletin board or as part of a fully non-commercial and freely
  20. redistributable diskette.  Both the source and executable code (including
  21. comments) must be included, without modification, in any copy.  This
  22. example may not be published in printed form or distributed with any
  23. commercial product.  However, the programming techniques and support
  24. routines set forth in these examples may be used in the development
  25. of original executable software products for Commodore Amiga computers.
  26.  
  27. All other rights reserved.
  28.  
  29. This example is provided "as-is" and is subject to change; no
  30. warranties are made.  All use is at your own risk. No liability or
  31. responsibility is assumed.
  32. */
  33.  
  34. #include <exec/types.h>
  35. #include <exec/lists.h>
  36. #include <exec/nodes.h>
  37. #include <exec/memory.h>
  38. #include <exec/execbase.h>
  39.  
  40. #include <clib/alib_protos.h>
  41. #include <clib/exec_protos.h>
  42.  
  43. #include <stdio.h>
  44. #include <string.h>
  45.  
  46. #ifdef LATTICE
  47. int CXBRK(void) { return(0); }   /* disable SAS/C CTRL-C handing */
  48. int chkabort(void) {return(0); }
  49. #endif
  50.  
  51. static UBYTE *VersTag = "$VER: tasklist 37.2 (31.3.92)";
  52. extern struct ExecBase *SysBase;
  53.  
  54. /* Use extended structure to hold task information */
  55. struct TaskNode {
  56.     struct Node tn_Node;
  57.     ULONG tn_TaskAddress;
  58.     ULONG tn_SigAlloc;
  59.     ULONG tn_SigWait;
  60.     UBYTE tn_Name[32];
  61. };
  62.  
  63.  
  64.  
  65.  
  66. void main(int argc, char **argv)
  67. {
  68.     struct List *ourtasklist;
  69.     struct List *exectasklist;
  70.     struct Task *task;
  71.     struct TaskNode *node, *tnode, *rnode = NULL;
  72.     struct Node *execnode;
  73.  
  74.     /* Allocate memory for our list */
  75.     if (ourtasklist = AllocMem(sizeof(struct List), MEMF_CLEAR)) {
  76.         /* Initialize list structure (ala NewList()) */
  77.         ourtasklist->lh_Head = (struct Node *)&ourtasklist->lh_Tail;
  78.         ourtasklist->lh_Tail = 0;
  79.         ourtasklist->lh_TailPred = (struct Node *)&ourtasklist->lh_Head;
  80.  
  81.         /* Make sure tasks won't switch lists or go away */
  82.         Disable();
  83.  
  84.         /* Snapshot task WAIT list */
  85.         exectasklist = &(SysBase->TaskWait);
  86.         for (execnode = exectasklist->lh_Head;
  87.                  execnode->ln_Succ; execnode = execnode->ln_Succ)
  88.         {
  89.             if (tnode = AllocMem(sizeof(struct TaskNode), MEMF_CLEAR))
  90.             {
  91.                 /* Save task information we want to print */
  92.                 strncpy(tnode->tn_Name, execnode->ln_Name, 32);
  93.                 tnode->tn_Node.ln_Pri = execnode->ln_Pri;
  94.                 tnode->tn_TaskAddress = (ULONG)execnode;
  95.                 tnode->tn_SigAlloc = ((struct Task *)execnode)->tc_SigAlloc;
  96.                 tnode->tn_SigWait = ((struct Task*)execnode)->tc_SigWait;
  97.                 AddTail(ourtasklist, (struct Node *)tnode);
  98.             }
  99.             else break;
  100.         }
  101.  
  102.         /* Snapshot task READY list */
  103.         exectasklist = &(SysBase->TaskReady);
  104.         for (execnode = exectasklist->lh_Head;
  105.                  execnode->ln_Succ; execnode = execnode->ln_Succ)
  106.         {
  107.             if (tnode = AllocMem(sizeof(struct TaskNode), MEMF_CLEAR))
  108.             {
  109.                 /* Save task information we want to print */
  110.                 strncpy(tnode->tn_Name, execnode->ln_Name, 32);
  111.                 tnode->tn_Node.ln_Pri = execnode->ln_Pri;
  112.                 tnode->tn_TaskAddress = (ULONG)execnode;
  113.                 tnode->tn_SigAlloc = ((struct Task *)execnode)->tc_SigAlloc;
  114.                 tnode->tn_SigWait = ((struct Task*)execnode)->tc_SigWait;
  115.                 AddTail(ourtasklist, (struct Node *)tnode);
  116.                 if(!rnode)  rnode = tnode;  /* first READY task */
  117.             }
  118.             else
  119.                 break;
  120.         }
  121.  
  122.         /* Re-enable interrupts and taskswitching */
  123.         Enable();
  124.  
  125.         /* Print now (printing above would have defeated a Forbid or Disable) */
  126.         printf("Pri Address     SigAlloc    SigWait    Taskname\n");
  127.  
  128.         node = (struct TaskNode *)(ourtasklist->lh_Head);
  129.         printf("\nWAITING:\n");
  130.         while (tnode = (struct TaskNode *)node->tn_Node.ln_Succ)
  131.         {
  132.             if(tnode == rnode)
  133.                 printf("\nREADY:\n");  /* we set rnode above */
  134.             printf("%02d  0x%08lx  0x%08lx  0x%08lx %s\n",
  135.                     node->tn_Node.ln_Pri, node->tn_TaskAddress, node->tn_SigAlloc,
  136.                     node->tn_SigWait, node->tn_Name);
  137.  
  138.             /* Free the memory, no need to remove the node, referenced once only */
  139.             FreeMem(node,sizeof(struct TaskNode));
  140.             node = tnode;
  141.         }
  142.         FreeMem(ourtasklist, sizeof(struct List));
  143.  
  144.         /* Say who we are */
  145.         printf("\nTHIS TASK:\n");
  146.         task = FindTask(NULL);
  147.         printf("%02d  0x%08lx  0x%08lx  0x%08lx %s\n",
  148.                 task->tc_Node.ln_Pri, task, task->tc_SigAlloc,
  149.                 task->tc_SigWait, task->tc_Node.ln_Name);
  150.  
  151.     }
  152. }