>
"Concurrently" means "at the same time", both in English and in CS. One way to make it appear as if you have concurrency is to timeslice.For one, the CS literature defines concurrency as not necessarily being at the same time.
Second, timeslice, by definition, is not at the same time. Hence the need to use quotes there. Concurrently does not mean "at the same time" any more than "timeslice" implies.
>But it's not at all valid to claim, as @coldtea seems to be doing, that concurrency excludes the notion of two things happening at the same time.
I never claimed that. I wrote that concurrency is not parallelism (which it isn't), not that it excludes parallelism.
Basic timeslicing (baring any other mechanism) for example is concurrent but not parallel. Node's evented "cooperative" concurrency is also not parallel.