Skip to content

Commit

Permalink
Add correct location & link to the definition
Browse files Browse the repository at this point in the history
Add link to the github file location and the path
within the source directory to gate_struct definiton
  • Loading branch information
Sebastian Fricke committed Apr 1, 2020
1 parent 1bf6ed1 commit e3711a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Interrupts/linux-interrupts-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,13 @@ The `IST` or `Interrupt Stack Table` is a new mechanism in the `x86_64`. It is u

The `Interrupt Descriptor Table` represented by the array of the `gate_desc` structures:


```C
gate_desc idt_table[IDT_ENTRIES] __page_aligned_bss;
extern gate_desc idt_table[];
```

where `gate_struct` is defined as:
[/arch/x86/include/asm/desc\_defs.h](https://github.com/torvalds/linux/blob/master/arch/x86/include/asm/desc_defs.h)

```C
struct gate_struct {
Expand Down

0 comments on commit e3711a1

Please sign in to comment.