Hacker News new | ask | show | jobs
by jagged-chisel 408 days ago
OT from TFA, so high jacking your thread …

I don’t recall if there was ever a difference between “abort” and “fail.” I could choose to abort the operation, or tell it … to fail? That this is a failure?

¯\_(ツ)_/¯

1 comments

Take reading a file from disk.

Abort would cancel the entire file read.

Retry would attempt that sector again.

Fail would fail that sector, but the program might decide to keep trying to read the rest of the file.

In practice abort and fail were often the same.

Makes sense. Maybe I ran across a proper use a time or two back then and just don’t remember. But the two being the same was the overwhelming experience.