From: Ben Pfaff Date: Sun, 29 Aug 2004 06:54:21 +0000 (+0000) Subject: Make intr_stubs const. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66edf3f00c62aaa59ccfc00bdde573bfce267a85;p=pintos-anon Make intr_stubs const. --- diff --git a/src/threads/intr-stubs.h b/src/threads/intr-stubs.h index 5ff9164..b1f5039 100644 --- a/src/threads/intr-stubs.h +++ b/src/threads/intr-stubs.h @@ -1,7 +1,7 @@ #ifndef HEADER_INTR_STUBS_H #define HEADER_INTR_STUBS_H -extern void (*intr_stubs[256]) (void); +extern void (*const intr_stubs[256]) (void); void intr_entry (void); void intr_exit (void);