Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local args = { ... }
- if args[1] == "start" then
- write( "Starting backgrounding and multitasking" )
- sleep( 1 )
- write( "." )
- sleep( 1 )
- write( "." )
- sleep( 1 )
- print( "." )
- sleep( 0.5 )
- term.clear( )
- term.setCursorPos( 1, 1 )
- os.loadAPI( "multitask" )
- multitask.start( )
- os.unloadAPI( "multitask" )
- print "Multitasking and all background processes stopped"
- end
- if args[1] == "new" then
- print( "The id of the proces is: ", multitask.runBackground( args[2] ) )
- end
- if args[1] == "status" then
- print( "Status of ", args[2], " is ", multitask.getStatus( args[2] ) )
- end
- if args[1] == "terminate" then
- print( "Returned code of termination is ", multitask.terminate( tonumber( args[2] ) ) )
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement