From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pierre Muller To: gdb-patches@sources.redhat.com Subject: [RFC] MERGEPID macro wrong ? Date: Mon, 28 May 2001 04:36:00 -0000 Message-id: <4.2.0.58.20010528132554.00b59660@ics.u-strasbg.fr> X-SW-Source: 2001-05/msg00476.html The definition of MERGEPID macro currently on CVS seems wrong to me: the macro is the following, #define MERGEPID(PID,TID) ptid_build(PID,TID, 0) but ptid_build is defined as ptid_t ptid_build (int pid, long lwp, long tid) So I think that the right macro should be #define MERGEPID(PID,TID) ptid_build(PID, 0, TID) Pierre Muller Institut Charles Sadron 6,rue Boussingault F 67083 STRASBOURG CEDEX (France) mailto:muller@ics.u-strasbg.fr Phone : (33)-3-88-41-40-07 Fax : (33)-3-88-41-40-99