difference between task and process


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers difference between task and process
# 1  
Old 12-20-2001
difference between task and process

Hi,

what is the difference between a task and a process.

what is the difference between multitasking , multiprogrammnig and multiprocessing?

Thanks in advance
# 2  
Old 12-20-2001
"Task" and "multitasking" are terms that do not have universal definitions in the world of unix.

"Multiprogramming" means the ability to run several programs at once. We take this for granted today, but early systems could run one program at a time. Almost all computer systems today use multiprogramming, so's there's really no need for the term anymore.

"Multiprocessing" is the ability to have several cpu's in one system to distribute the load. The are still penty of uniprocessor systems out there, so this term still sees frequent use.

You didn't ask, but "multithreading" is the ability to have multiple threads in a process. For example, one thread may be reading the next block of data while another thread processes the current block of data. When I heard "multitasking" used in the non-unix world, it was referring to something close to today's multithreading.
# 3  
Old 12-21-2001
perderabo
Can I have some more on "Multithreading"?
Smilie
sskb
# 4  
Old 12-21-2001
See "man pthread_create" as a starting point. There is an example on that page. There are also a lot of man pages on threads. Use "man -k pthread" to get a list.
# 5  
Old 12-21-2001
Try this link:

The defination I use for multiprocessing is more similar to number (1) in the link below:

http://www.webopedia.com/TERM/M/multiprocessing.html

Multiprocessing has two meanings, like terms in Websters. I tend to use the term for (1) in the link above and not (2). For (2) I tend to use the term 'multiprocessor'....... confused Smilie

Here is another link:


http://www.webopedia.com/TERM/M/multitasking.html
# 6  
Old 12-22-2001
I have gone deep into my archives to further research this question. The earliest book that I could find that uses all three terms is Operating Systems by Harry Katzan Jr published in (I'm dating myself here) 1973. The book heavily focuses on IBM operating systems since IBM dominated the market in those days.

First, the word "process" does not even get an entry in the index. Where we would use "process", this book uses "task".

In Chapter 5 Evolutionary Development of Operating System Technology, we learn that IBM first broke the "one program at a time" mold when it introduced SPOOL. You will love this quote...
Quote:
The term Spooling was derived from the acronym SPOOL (Simultaneous Peripheral Output On Line) which obviously refers to the process of computing and doing output concurrently.
But anyway Spooling was the first example of multiprogramming. The computer could run one user written task and it did something else. But the "else" was limited to spooling and few other os supplied utility programs.

Multitasking was the next step where the OS could actually run two or more user written tasks at once.

And multiprocessing is indeed two or more cpu's in one system. I too used to use multiprocessing to mean multiple processes, but I stopped when real multi-processors came along. It's kinda like the way the terms "microcode" and "firmware" got carelessly used.
# 7  
Old 12-22-2001
Excellent point Perderabo.... thanks for the extra research! Here is a Linux link that basically says the same thing as you are saying:

http://www.linuxguruz.org/foldoc/fol...ultiprocessing

And another one:

http://www.cbbrowne.com/info/smp.html

Thanks for the clarification!!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk to calculate difference of split and sum the difference

In the awk I am trying to subtract the difference $3-$2 of each matching $4 before the first _ (underscore) and print that value in $13. I think the awk will do that, but added comments. What I am not sure off is how to add a line or lines that will add sum each matching $13 value and put it in... (2 Replies)
Discussion started by: cmccabe
2 Replies

2. AIX

Difference between services and process

Hi, I want to know the Difference between services and process... is services having many processes (1 Reply)
Discussion started by: sumanthupar
1 Replies

3. Programming

what is the main difference between difference between using nonatomic lseek and O_APPEND

I think both write at the end of the file ...... but is there a sharp difference between those 2 instruction ..... thank you this is my 3rd question today forgive me :D (1 Reply)
Discussion started by: fwrlfo
1 Replies

4. Shell Programming and Scripting

Task

Hi experts, I have a problem with the below shell task: I need to modify the file creatin a paired row , per each row which matches filter (e.g. number of nonempty columns = 5) Output should look like this: second row is original one from the input, first row(red) is pairing row, it's... (29 Replies)
Discussion started by: hernand
29 Replies

5. Shell Programming and Scripting

Challenging task : script for mailing process completion timing report to users.

Hi all, This is my first post. I am new to unix scripting. My requirement is as follows : We are using a financial backoffice application. Now at the end of day we have send users a status report stating all timings of EOD processes for all countries. I need timings for following... (0 Replies)
Discussion started by: ammbhhar
0 Replies

6. Shell Programming and Scripting

How to calculate time difference between start and end time of a process!

Hello All, I have a problem calculating the time difference between start and end timings...! the timings are given by 24hr format.. Start Date : 08/05/10 12:55 End Date : 08/09/10 06:50 above values are in mm/dd/yy hh:mm format. Now the thing is, 7th(08/07/10) and... (16 Replies)
Discussion started by: smarty86
16 Replies

7. UNIX for Dummies Questions & Answers

Difference between 'jobs' and 'process'

Hi Everyone, Can you kindly explain me the terms 'jobs' and 'process' and the difference between them? How the commands 'ps' and 'lsof' are related to them? Thanking you in anticipation (1 Reply)
Discussion started by: adc22
1 Replies

8. Shell Programming and Scripting

Parse an XML task list to create each task.xml file

I have an task definition listing xml file that contains a list of tasks such as <TASKLIST <TASK definition="Completion date" id="Taskname1" Some other <CODE name="Code12" <Parameter pname="Dog" input="5.6" units="feet" etc /Parameter> <Parameter... (3 Replies)
Discussion started by: MissI
3 Replies

9. Shell Programming and Scripting

comment and Uncomment single task out of multiple task

I have a file contains TASK gsnmpproxy { CommandLine = $SMCHOME/bin/gsnmpProxy.exe } TASK gsnmpdbgui { CommandLine = $SMCHOME/bin/gsnmpdbgui.exe I would like to comment and than uncomment specific task eg TASK gsnmpproxy Pls suggest how to do in shell script (9 Replies)
Discussion started by: madhusmita
9 Replies

10. UNIX for Dummies Questions & Answers

process vs task

Hi, I am new to this forum and unix too. I have just started learning unix. As I was going through the first chapter, I read that unix is multitasking, multiprogramming, multiprocessing and multiuser OS. My question is: Is there any difference between a TASK and a PROCESS. How are PROCESS... (2 Replies)
Discussion started by: hana
2 Replies
Login or Register to Ask a Question