---
title: interrupted
framework: system
role: symbol
role_heading: Type Property
path: system/errno/interrupted
---

# interrupted

Interrupted function call.

## Declaration

```swift
static var interrupted: Errno { get }
```

## Mentioned in

Adopting Swift Error Constants

## Discussion

Discussion The process caught an asynchronous signal (such as SIGINT or SIGQUIT) during the execution of an interruptible function. If the signal handler performs a normal return, the caller of the interrupted function call receives this error. The corresponding C error is EINTR.

## See Also

### System Call Errors

- [alreadyInProcess](system/errno/alreadyinprocess.md)
- [badAddress](system/errno/badaddress.md)
- [invalidArgument](system/errno/invalidargument.md)
- [noFunction](system/errno/nofunction.md)
- [nowInProgress](system/errno/nowinprogress.md)
- [resourceBusy](system/errno/resourcebusy.md)
- [resourceTemporarilyUnavailable](system/errno/resourcetemporarilyunavailable.md)
