Date: Tue, 27 Apr 1999 10:27:08 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Jay cc: djgpp AT delorie DOT com Subject: Re: 3 questions In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 26 Apr 1999, Jay wrote: > Say if you have a function pointer to a function, do you have to > lock that also, along with the function? Yes. All code AND DATA used in the interrupt handler must be locked. A function pointer is used (by dereferencing it), so it must be locked, too.