Advertisement
Guest User

proces

a guest
Aug 15th, 2012
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. local args = { ... }
  2.  
  3. if args[1] == "start" then
  4.     write( "Starting backgrounding and multitasking" )
  5.     sleep( 1 )
  6.     write( "." )
  7.     sleep( 1 )
  8.     write( "." )
  9.     sleep( 1 )
  10.     print( "." )
  11.     sleep( 0.5 )
  12.     term.clear( )
  13.     term.setCursorPos( 1, 1 )
  14.     os.loadAPI( "multitask" )
  15.     multitask.start( )
  16.     os.unloadAPI( "multitask" )
  17.     print "Multitasking and all background processes stopped"
  18. end
  19.  
  20. if args[1] == "new" then
  21.     print( "The id of the proces is: ", multitask.runBackground( args[2] ) )
  22. end
  23.  
  24. if args[1] == "status" then
  25.     print( "Status of ", args[2], " is ", multitask.getStatus( args[2] ) )
  26. end
  27.  
  28. if args[1] == "terminate" then
  29.     print( "Returned code of termination is ", multitask.terminate( tonumber( args[2] ) ) )
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement