vote up 3 vote down star
1

So I'm a little confused by this terminology.

Everyone refers to "Asynchronous" computing as running different processes on seperate threads, which gives the illusion that these processes are running at the same time.

This is not the definition of the word asynchronous.

a⋅syn⋅chro⋅nous
–adjective 
1. not occurring at the same time. 
2. (of a computer or other electrical machine) having each operation started only after the preceding operation is completed.

What am I not understanding here?

flag

71% accept rate
1  
I don't know. But I think it's funny that definition #2 is the exact opposite of how programmers use the word. – Steve Wortham Oct 20 at 18:59
1  
This is why I usually use Google: "define: *word*" to get my definitions. You get four or five or twenty definitions at once. – John Gietzen Oct 20 at 19:05

7 Answers

vote up 1 vote down check

It means that the two threads are not running in sync, that is, they are not both running on the same timeline.

I think it's a case of computer scientists being too clever about their use of words.

Synchronisation ,in this context, would suggest that both threads start and end at the same time. Asynchrony in this sense, means both threads are free do start, process and end as they require.

link|flag
vote up 6 vote down

The word "synchronous" implies that a function call will be synchronized with some other event.

Asynchronous implies that no such synchronization occurs.

It seems like the definition that you have there should really be the definition for "concurrent," or something. That definition looks wrong.


PS:

Here is the wiktionary definition:

asynchronous

  1. Not synchronous; occurring at different times.
  2. (computing, of a request or a message) allowing the client to continue during processing.

Which just so happens to be the exact opposite of what you posted.

link|flag
I got my definition from: dictionary.reference.com/browse/Asynchronous/… – Balk Oct 20 at 19:00
I found the definitions Balk posted here: dictionary.reference.com/browse/asynchronous/… It seems the definition of the word varies drastically depending on context. – Steve Wortham Oct 20 at 19:01
I'm not saying you made it up, I'm just saying that definitions #2 of the two sources are in direct opposition. – John Gietzen Oct 20 at 19:02
vote up 2 vote down

I would guess it's because they are not synchronized ;)

In other words... if one process gets stopped, killed, or is waiting for something, the other will carry on

link|flag
vote up 1 vote down

Your second definition is more helpful here:

2. [...] having each operation started only after the preceding operation is completed.

When you make an asynchronous call, that call might not be completed before the next operation is started. When the call is synchronous, it will be.

link|flag
Your description is correct, but it's the opposite of what that definition says... – Guffa Oct 20 at 19:27
vote up 0 vote down

It really means that an asynchronous event is happening independently of other events whereas a synchronous event would be happening dependent of other events.

link|flag
vote up 0 vote down

I believe that the term was first used for synchronous vs. asynchronous communication. There synchronous means that the two communicating parts have a common clock signal that they run by, so they run in parallel. Asynchronous communication instead has a ready signal, so one part asks for data and gets a signal back when it's available.

The terms was then adapted to processes, but as there are obvious differences some aspects of the terms work differently. For a single thread process the natural way to request for something to be done is to make a synchronous call that transfers control to the subprocess, and then control is returned when it's done, and the process continues.

An asynchronous call works just like asynchronous communication in the aspect that you send a request for something to be done, and the process doing it returns a signal when it's done. The difference in the usage of the terms is that for processes it's in the asynchronous processing that the processes runs in parallel, while for communication it is the synchronous communication that run in parallel.

So "computer or electrical machine" is really a too wide scope for making a correct definition of the term, as it's used in slightly different ways for different techniques.

link|flag
vote up 0 vote down

I think there's a slant that is slightly different to most of the answers here.

Asynchronous means "not happening at the same time".

In the specific case of threading:

  • Synchronous means "execute this code now".
  • Asynchronous means "enqueue this work on a different thread that will be executed at some indeterminate time in the future"

This usually allows you to "do two things at once" because of reasons like:

  • one thread is just waiting (e.g. for data to arrive on a serial port) so is asleep
  • You have multiple processors, so the two threads can run concurrently.

However, even with 128 processor cores, the case is the same: the work will be executed "at some time in the future" (if perhaps the very near future) rather than "now".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.