This is the mail archive of the frysk@sourceware.org mailing list for the frysk project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: inner classes with fields names similar to outer class/method fields


There are two postscripts to this thread:
- in looking at rewriting TaskEvent to eliminate the global variable issue I found that the below shouldn't even be using TaskEvent; instead it should use frysk.event.Event
- this code is susceptible to bug 4282 :-(


Mark Wielaard wrote:
     Manager.eventLoop.add(new TaskEvent()
       {
        public void execute ()
        {
          // Continue running (inside syscall),
          // while attaching another syscall observer
-         task.requestUnblock(syso);
-         task.requestAddSyscallObserver(syso2);
+         proc_task.requestUnblock(syso);
+         proc_task.requestAddSyscallObserver(syso2);
        }
       });




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]