home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / sys / amiga / programm / 17852 < prev    next >
Encoding:
Text File  |  1992-12-28  |  1.3 KB  |  39 lines

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!wupost!spool.mu.edu!yale.edu!ira.uka.de!sbusol.rz.uni-sb.de!sbusol.rz.uni-sb.de!rzsaj
  2. From: rzsaj@sbusol.rz.uni-sb.de (Andreas Jung)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: How to use CreateProc() under Kickstart 1.3 ?
  5. Date: 28 Dec 1992 10:11:21 GMT
  6. Organization: Universitaet des Saarlandes,Rechenzentrum
  7. Lines: 28
  8. Message-ID: <1hmjs9INNq57@sbusol.rz.uni-sb.de>
  9. NNTP-Posting-Host: sbusol.rz.uni-sb.de
  10.  
  11. I want to start an procedure as a process (not a task):
  12.  
  13. main()
  14. {
  15.  
  16.     process=CreateProc(....,MyProcedure);
  17.  
  18. }
  19.  
  20.  
  21. MyProcedure(void)
  22. {
  23.  
  24. }
  25.  
  26. The program worked with CreateTask() but not with CreateProc(). Where is the problem ?
  27.  
  28.  
  29.  
  30. --------------------------------------------------------------------------
  31. -                                                                        -
  32. -       ///    Andreas Jung         Internet: ajung@rz.uni-sb.de         -
  33. -      ///     Klosterstrasse 21              rzsaj@sbusol.rz.uni-sb.de  - 
  34. -  \\\///      D-6602 Dudweiler     -----------------------------------  - 
  35. -   \XX/       Germany                                                   -
  36. -                                                                        -
  37. --------------------------------------------------------------------------
  38.  
  39.