yann@1: Fixes following error building glibc-2.2.5 with gcc-3.4: yann@1: td_init.c: In function `td_init': yann@1: td_init.c:30: error: parse error before string constant yann@1: td_init.c:30: error: parse error before string constant yann@1: make[2]: *** [/home/dank/wk/crosstool-0.28-rc4h/build/i686-unknown-linux-gnu/gcc-3.4.0-20040406-glibc-2.2.5/build-glibc/linuxthreads_db/td_init.os] Error 1 yann@1: yann@1: # Retrieved by diffing a +-1 day rng around the time mentioned yann@1: # in http://sources.redhat.com/ml/glibc-cvs/2001-q4/msg00654.html yann@1: # cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/glibc diff -u -D"2001-12-27 08:41:30" -D"2001-12-29 08:41:32" yann@1: # then fixing paths. yann@1: yann@1: Index: ChangeLog yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/ChangeLog,v yann@1: retrieving revision 1.41 yann@1: retrieving revision 1.42 yann@1: diff -u -r1.41 -r1.42 yann@1: --- libc/linuxthreads_db/ChangeLog 13 Apr 2001 00:09:54 -0000 1.41 yann@1: +++ libc/linuxthreads_db/ChangeLog 29 Dec 2001 00:59:58 -0000 1.42 yann@1: @@ -1,3 +1,43 @@ yann@1: +2001-12-28 Andreas Jaeger yann@1: + yann@1: + * td_init.c (td_init): Don't use __FUNCTION__ as literal. yann@1: + * td_log.c (td_log): Likewise. yann@1: + * td_ta_delete.c (td_ta_delete): Likewise. yann@1: + * td_ta_get_nthreads.c (td_ta_get_nthreads): Likewise. yann@1: + * td_ta_get_ph.c (td_ta_get_ph): Likewise. yann@1: + * td_ta_map_id2thr.c (td_ta_map_id2thr): Likewise. yann@1: + * td_ta_map_lwp2thr.c (td_ta_map_lwp2thr): Likewise. yann@1: + * td_ta_new.c (td_ta_new): Likewise. yann@1: + * td_ta_clear_event.c (td_ta_clear_event): Likewise. yann@1: + * td_ta_enable_stats.c (td_ta_enable_stats): Likewise. yann@1: + * td_ta_event_addr.c (td_ta_event_addr): Likewise. yann@1: + * td_ta_event_getmsg.c (td_ta_event_getmsg): Likewise. yann@1: + * td_ta_get_stats.c (td_ta_get_stats): Likewise. yann@1: + * td_ta_reset_stats.c (td_ta_reset_stats): Likewise. yann@1: + * td_ta_set_event.c (td_ta_set_event): Likewise. yann@1: + * td_ta_setconcurrency.c (td_ta_setconcurrency): Likewise. yann@1: + * td_ta_thr_iter.c (td_ta_thr_iter): Likewise. yann@1: + * td_ta_tsd_iter.c (td_ta_tsd_iter): Likewise. yann@1: + * td_thr_clear_event.c (td_thr_clear_event): Likewise. yann@1: + * td_thr_dbresume.c (td_thr_dbresume): Likewise. yann@1: + * td_thr_dbsuspend.c (td_thr_dbsuspend): Likewise. yann@1: + * td_thr_event_enable.c (td_thr_event_enable): Likewise. yann@1: + * td_thr_event_getmsg.c (td_thr_event_getmsg): Likewise. yann@1: + * td_thr_get_info.c (td_thr_get_info): Likewise. yann@1: + * td_thr_getfpregs.c (td_thr_getfpregs): Likewise. yann@1: + * td_thr_getgregs.c (td_thr_getgregs): Likewise. yann@1: + * td_thr_getxregs.c (td_thr_getxregs): Likewise. yann@1: + * td_thr_getxregsize.c (td_thr_getxregsize): Likewise. yann@1: + * td_thr_set_event.c (td_thr_set_event): Likewise. yann@1: + * td_thr_setfpregs.c (td_thr_setfpregs): Likewise. yann@1: + * td_thr_setgregs.c (td_thr_setgregs): Likewise. yann@1: + * td_thr_setprio.c (td_thr_setprio): Likewise. yann@1: + * td_thr_setsigpending.c (td_thr_setsigpending): Likewise. yann@1: + * td_thr_setxregs.c (td_thr_setxregs): Likewise. yann@1: + * td_thr_sigsetmask.c (td_thr_sigsetmask): Likewise. yann@1: + * td_thr_tsd.c (td_thr_tsd): Likewise. yann@1: + * td_thr_validate.c (td_thr_validate): Likewise. yann@1: + yann@1: 2001-04-12 Ulrich Drepper yann@1: yann@1: * td_ta_map_id2thr.c: If thread terminated return TD_NOTHR. yann@1: Index: td_init.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_init.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_init.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_init.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Initialization function of thread debugger support library. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -27,6 +27,6 @@ yann@1: td_init (void) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_init"); yann@1: return TD_OK; yann@1: } yann@1: Index: td_log.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_log.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_log.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_log.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Noop, left for historical reasons. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,8 +25,8 @@ yann@1: td_log (void) yann@1: { yann@1: /* This interface is deprecated in the Sun interface. We provide it yann@1: - for compatibility but don't do anyhting ourself. We might in yann@1: + for compatibility but don't do anything ourself. We might in yann@1: future do some logging if this seems reasonable. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_log"); yann@1: return TD_OK; yann@1: } yann@1: Index: td_ta_clear_event.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_clear_event.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_ta_clear_event.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_ta_clear_event.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Globally disable events. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -29,7 +29,7 @@ yann@1: td_thr_events_t old_event; yann@1: int i; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_clear_event"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_delete.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_delete.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_ta_delete.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_ta_delete.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Detach to target process. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -26,7 +26,7 @@ yann@1: td_err_e yann@1: td_ta_delete (td_thragent_t *ta) yann@1: { yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_delete"); yann@1: yann@1: /* Safety check. */ yann@1: if (ta == NULL || __td_agent_list == NULL) yann@1: Index: td_ta_enable_stats.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_enable_stats.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_ta_enable_stats.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_ta_enable_stats.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Enable collection of statistics for process. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,7 +25,7 @@ yann@1: td_ta_enable_stats (const td_thragent_t *ta, int enable) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_enable_stats"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_event_addr.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_event_addr.c,v yann@1: retrieving revision 1.5 yann@1: retrieving revision 1.6 yann@1: diff -u -r1.5 -r1.6 yann@1: --- libc/linuxthreads_db/td_ta_event_addr.c 6 Jul 2001 05:27:23 -0000 1.5 yann@1: +++ libc/linuxthreads_db/td_ta_event_addr.c 28 Dec 2001 16:41:29 -0000 1.6 yann@1: @@ -27,7 +27,7 @@ yann@1: td_err_e res = TD_NOEVENT; yann@1: int idx = -1; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_event_addr"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_event_getmsg.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_event_getmsg.c,v yann@1: retrieving revision 1.5 yann@1: retrieving revision 1.6 yann@1: diff -u -r1.5 -r1.6 yann@1: --- libc/linuxthreads_db/td_ta_event_getmsg.c 6 Jul 2001 05:27:23 -0000 1.5 yann@1: +++ libc/linuxthreads_db/td_ta_event_getmsg.c 28 Dec 2001 16:41:29 -0000 1.6 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Retrieve event. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -32,7 +32,7 @@ yann@1: td_eventbuf_t event; yann@1: psaddr_t addr; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_event_getmsg"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_get_nthreads.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_get_nthreads.c,v yann@1: retrieving revision 1.5 yann@1: retrieving revision 1.6 yann@1: diff -u -r1.5 -r1.6 yann@1: --- libc/linuxthreads_db/td_ta_get_nthreads.c 6 Jul 2001 05:27:23 -0000 1.5 yann@1: +++ libc/linuxthreads_db/td_ta_get_nthreads.c 28 Dec 2001 16:41:29 -0000 1.6 yann@1: @@ -25,7 +25,7 @@ yann@1: { yann@1: psaddr_t addr; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_get_nthreads"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_get_ph.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_get_ph.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_ta_get_ph.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_ta_get_ph.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Get external process handle. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -24,7 +24,7 @@ yann@1: td_err_e yann@1: td_ta_get_ph (const td_thragent_t *ta, struct ps_prochandle **ph) yann@1: { yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_get_ph"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_get_stats.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_get_stats.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_ta_get_stats.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_ta_get_stats.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Retrieve statistics for process. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,7 +25,7 @@ yann@1: td_ta_get_stats (const td_thragent_t *ta, td_ta_stats_t *statsp) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_get_stats"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_map_id2thr.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_map_id2thr.c,v yann@1: retrieving revision 1.4 yann@1: retrieving revision 1.5 yann@1: diff -u -r1.4 -r1.5 yann@1: --- libc/linuxthreads_db/td_ta_map_id2thr.c 6 Jul 2001 05:27:23 -0000 1.4 yann@1: +++ libc/linuxthreads_db/td_ta_map_id2thr.c 28 Dec 2001 16:41:29 -0000 1.5 yann@1: @@ -28,7 +28,7 @@ yann@1: struct _pthread_descr_struct pds; yann@1: int pthread_threads_max; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_map_id2thr"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_map_lwp2thr.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_map_lwp2thr.c,v yann@1: retrieving revision 1.5 yann@1: retrieving revision 1.6 yann@1: diff -u -r1.5 -r1.6 yann@1: --- libc/linuxthreads_db/td_ta_map_lwp2thr.c 6 Jul 2001 05:27:23 -0000 1.5 yann@1: +++ libc/linuxthreads_db/td_ta_map_lwp2thr.c 28 Dec 2001 16:41:29 -0000 1.6 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Which thread is running on an lwp? yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -34,7 +34,7 @@ yann@1: # define num 1 yann@1: #endif yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_map_lwp2thr"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_new.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_new.c,v yann@1: retrieving revision 1.10 yann@1: retrieving revision 1.11 yann@1: diff -u -r1.10 -r1.11 yann@1: --- libc/linuxthreads_db/td_ta_new.c 6 Jul 2001 05:27:23 -0000 1.10 yann@1: +++ libc/linuxthreads_db/td_ta_new.c 28 Dec 2001 16:41:29 -0000 1.11 yann@1: @@ -35,7 +35,7 @@ yann@1: psaddr_t addr; yann@1: struct agent_list *elemp; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_new"); yann@1: yann@1: /* Get the global event mask. This is one of the variables which yann@1: are new in the thread library to enable debugging. If it is yann@1: Index: td_ta_reset_stats.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_reset_stats.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_ta_reset_stats.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_ta_reset_stats.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Reset statistics. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,7 +25,7 @@ yann@1: td_ta_reset_stats (const td_thragent_t *ta) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_reset_stats"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_set_event.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_set_event.c,v yann@1: retrieving revision 1.4 yann@1: retrieving revision 1.5 yann@1: diff -u -r1.4 -r1.5 yann@1: --- libc/linuxthreads_db/td_ta_set_event.c 6 Jul 2001 05:27:23 -0000 1.4 yann@1: +++ libc/linuxthreads_db/td_ta_set_event.c 28 Dec 2001 16:41:29 -0000 1.5 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Globally enable events. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -29,7 +29,7 @@ yann@1: td_thr_events_t old_event; yann@1: int i; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_set_event"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_setconcurrency.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_setconcurrency.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_ta_setconcurrency.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_ta_setconcurrency.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Set suggested concurrency level for process. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,7 +25,7 @@ yann@1: td_ta_setconcurrency (const td_thragent_t *ta, int level) yann@1: { yann@1: /* This is something LinuxThreads does not support. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_setconcurrency"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_thr_iter.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_thr_iter.c,v yann@1: retrieving revision 1.11 yann@1: retrieving revision 1.12 yann@1: diff -u -r1.11 -r1.12 yann@1: --- libc/linuxthreads_db/td_ta_thr_iter.c 6 Jul 2001 05:27:23 -0000 1.11 yann@1: +++ libc/linuxthreads_db/td_ta_thr_iter.c 28 Dec 2001 16:41:29 -0000 1.12 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Iterate over a process's threads. yann@1: - Copyright (C) 1999, 2000 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -86,7 +86,7 @@ yann@1: # define num 1 yann@1: #endif yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_thr_iter"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_ta_tsd_iter.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_ta_tsd_iter.c,v yann@1: retrieving revision 1.4 yann@1: retrieving revision 1.5 yann@1: diff -u -r1.4 -r1.5 yann@1: --- libc/linuxthreads_db/td_ta_tsd_iter.c 6 Jul 2001 05:27:23 -0000 1.4 yann@1: +++ libc/linuxthreads_db/td_ta_tsd_iter.c 28 Dec 2001 16:41:29 -0000 1.5 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Iterate over a process's thread-specific data. yann@1: - Copyright (C) 1999, 2000 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -29,7 +29,7 @@ yann@1: int pthread_keys_max; yann@1: int cnt; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_ta_tsd_iter"); yann@1: yann@1: /* Test whether the TA parameter is ok. */ yann@1: if (! ta_ok (ta)) yann@1: Index: td_thr_clear_event.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_clear_event.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_thr_clear_event.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_thr_clear_event.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Disable specific event for thread. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -31,7 +31,7 @@ yann@1: td_thr_events_t old_event; yann@1: int i; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_clear_event"); yann@1: yann@1: /* Write the new value into the thread data structure. */ yann@1: if (ps_pdread (th->th_ta_p->ph, yann@1: Index: td_thr_dbresume.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_dbresume.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_dbresume.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_dbresume.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Resume execution of given thread. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,6 +25,6 @@ yann@1: td_thr_dbresume (const td_thrhandle_t *th) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_dbresume"); yann@1: return TD_NOCAPAB; yann@1: } yann@1: Index: td_thr_dbsuspend.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_dbsuspend.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_dbsuspend.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_dbsuspend.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Suspend execution of given thread. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,6 +25,6 @@ yann@1: td_thr_dbsuspend (const td_thrhandle_t *th) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_dbsuspend"); yann@1: return TD_NOCAPAB; yann@1: } yann@1: Index: td_thr_event_enable.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_event_enable.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_thr_event_enable.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_thr_event_enable.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Enable event process-wide. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -28,7 +28,7 @@ yann@1: const td_thrhandle_t *th; yann@1: int onoff; yann@1: { yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_event_enable"); yann@1: yann@1: /* Write the new value into the thread data structure. */ yann@1: if (ps_pdwrite (th->th_ta_p->ph, yann@1: Index: td_thr_event_getmsg.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_event_getmsg.c,v yann@1: retrieving revision 1.3 yann@1: retrieving revision 1.4 yann@1: diff -u -r1.3 -r1.4 yann@1: --- libc/linuxthreads_db/td_thr_event_getmsg.c 6 Jul 2001 05:27:23 -0000 1.3 yann@1: +++ libc/linuxthreads_db/td_thr_event_getmsg.c 28 Dec 2001 16:41:29 -0000 1.4 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Retrieve event. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -29,7 +29,7 @@ yann@1: { yann@1: td_eventbuf_t event; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_event_getmsg"); yann@1: yann@1: /* Read the even structure from the target. */ yann@1: if (ps_pdread (th->th_ta_p->ph, yann@1: Index: td_thr_get_info.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_get_info.c,v yann@1: retrieving revision 1.9 yann@1: retrieving revision 1.10 yann@1: diff -u -r1.9 -r1.10 yann@1: --- libc/linuxthreads_db/td_thr_get_info.c 6 Jul 2001 05:27:23 -0000 1.9 yann@1: +++ libc/linuxthreads_db/td_thr_get_info.c 28 Dec 2001 16:41:29 -0000 1.10 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Get thread information. yann@1: - Copyright (C) 1999, 2000 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -29,7 +29,7 @@ yann@1: { yann@1: struct _pthread_descr_struct pds; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_get_info"); yann@1: yann@1: /* Get the thread descriptor. */ yann@1: if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds, yann@1: Index: td_thr_getfpregs.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_getfpregs.c,v yann@1: retrieving revision 1.4 yann@1: retrieving revision 1.5 yann@1: diff -u -r1.4 -r1.5 yann@1: --- libc/linuxthreads_db/td_thr_getfpregs.c 6 Jul 2001 05:27:23 -0000 1.4 yann@1: +++ libc/linuxthreads_db/td_thr_getfpregs.c 28 Dec 2001 16:41:29 -0000 1.5 yann@1: @@ -26,7 +26,7 @@ yann@1: { yann@1: struct _pthread_descr_struct pds; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_getfpregs"); yann@1: yann@1: /* We have to get the state and the PID for this thread. */ yann@1: if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds, yann@1: Index: td_thr_getgregs.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_getgregs.c,v yann@1: retrieving revision 1.8 yann@1: retrieving revision 1.9 yann@1: diff -u -r1.8 -r1.9 yann@1: --- libc/linuxthreads_db/td_thr_getgregs.c 6 Jul 2001 05:27:23 -0000 1.8 yann@1: +++ libc/linuxthreads_db/td_thr_getgregs.c 28 Dec 2001 16:41:29 -0000 1.9 yann@1: @@ -26,7 +26,7 @@ yann@1: { yann@1: struct _pthread_descr_struct pds; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_getgregs"); yann@1: yann@1: /* We have to get the state and the PID for this thread. */ yann@1: if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds, yann@1: Index: td_thr_getxregs.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_getxregs.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_getxregs.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_getxregs.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Get a thread's extra state register set. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,6 +25,6 @@ yann@1: td_thr_getxregs (const td_thrhandle_t *th, void *xregs) yann@1: { yann@1: /* XXX This might be platform specific. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_getxregs"); yann@1: return TD_NOXREGS; yann@1: } yann@1: Index: td_thr_getxregsize.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_getxregsize.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_getxregsize.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_getxregsize.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Get the size of the extra state register set for this architecture. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,6 +25,6 @@ yann@1: td_thr_getxregsize (const td_thrhandle_t *th, int *sizep) yann@1: { yann@1: /* XXX This might be platform specific. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_getxregsize"); yann@1: return TD_NOXREGS; yann@1: } yann@1: Index: td_thr_set_event.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_set_event.c,v yann@1: retrieving revision 1.4 yann@1: retrieving revision 1.5 yann@1: diff -u -r1.4 -r1.5 yann@1: --- libc/linuxthreads_db/td_thr_set_event.c 6 Jul 2001 05:27:23 -0000 1.4 yann@1: +++ libc/linuxthreads_db/td_thr_set_event.c 28 Dec 2001 16:41:29 -0000 1.5 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Enable specific event for thread. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -31,7 +31,7 @@ yann@1: td_thr_events_t old_event; yann@1: int i; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_set_event"); yann@1: yann@1: /* Write the new value into the thread data structure. */ yann@1: if (ps_pdread (th->th_ta_p->ph, yann@1: Index: td_thr_setfpregs.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_setfpregs.c,v yann@1: retrieving revision 1.4 yann@1: retrieving revision 1.5 yann@1: diff -u -r1.4 -r1.5 yann@1: --- libc/linuxthreads_db/td_thr_setfpregs.c 6 Jul 2001 05:27:23 -0000 1.4 yann@1: +++ libc/linuxthreads_db/td_thr_setfpregs.c 28 Dec 2001 16:41:29 -0000 1.5 yann@1: @@ -26,7 +26,7 @@ yann@1: { yann@1: struct _pthread_descr_struct pds; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_setfpregs"); yann@1: yann@1: /* We have to get the state and the PID for this thread. */ yann@1: if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds, yann@1: Index: td_thr_setgregs.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_setgregs.c,v yann@1: retrieving revision 1.6 yann@1: retrieving revision 1.7 yann@1: diff -u -r1.6 -r1.7 yann@1: --- libc/linuxthreads_db/td_thr_setgregs.c 6 Jul 2001 05:27:23 -0000 1.6 yann@1: +++ libc/linuxthreads_db/td_thr_setgregs.c 28 Dec 2001 16:41:29 -0000 1.7 yann@1: @@ -26,7 +26,7 @@ yann@1: { yann@1: struct _pthread_descr_struct pds; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_setgregs"); yann@1: yann@1: /* We have to get the state and the PID for this thread. */ yann@1: if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds, yann@1: Index: td_thr_setprio.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_setprio.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_setprio.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_setprio.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Set a thread's priority. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,6 +25,6 @@ yann@1: td_thr_setprio (const td_thrhandle_t *th, int prio) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_setprio"); yann@1: return TD_OK; yann@1: } yann@1: Index: td_thr_setsigpending.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_setsigpending.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_setsigpending.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_setsigpending.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Raise a signal for a thread. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -26,6 +26,6 @@ yann@1: const sigset_t *ss) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_setsigpending"); yann@1: return TD_OK; yann@1: } yann@1: Index: td_thr_setxregs.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_setxregs.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_setxregs.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_setxregs.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Set a thread's extra state register set. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,6 +25,6 @@ yann@1: td_thr_setxregs (const td_thrhandle_t *ta, const void *addr) yann@1: { yann@1: /* XXX This might have to be platform specific. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_setxregs"); yann@1: return TD_NOXREGS; yann@1: } yann@1: Index: td_thr_sigsetmask.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_sigsetmask.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_sigsetmask.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_sigsetmask.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Set a thread's signal mask. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -25,6 +25,6 @@ yann@1: td_thr_sigsetmask (const td_thrhandle_t *th, const sigset_t *ss) yann@1: { yann@1: /* XXX We have to figure out what has to be done. */ yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_sigsetmask"); yann@1: return TD_OK; yann@1: } yann@1: Index: td_thr_tsd.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_tsd.c,v yann@1: retrieving revision 1.2 yann@1: retrieving revision 1.3 yann@1: diff -u -r1.2 -r1.3 yann@1: --- libc/linuxthreads_db/td_thr_tsd.c 6 Jul 2001 05:27:23 -0000 1.2 yann@1: +++ libc/linuxthreads_db/td_thr_tsd.c 28 Dec 2001 16:41:29 -0000 1.3 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Get a thread-specific data pointer for a thread. yann@1: - Copyright (C) 1999 Free Software Foundation, Inc. yann@1: + Copyright (C) 1999, 2001 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: Contributed by Ulrich Drepper , 1999. yann@1: yann@1: @@ -33,7 +33,7 @@ yann@1: unsigned int idx2nd; yann@1: void *p; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_tsd"); yann@1: yann@1: /* Get the thread descriptor. */ yann@1: if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds, yann@1: Index: td_thr_validate.c yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads_db/td_thr_validate.c,v yann@1: retrieving revision 1.4 yann@1: retrieving revision 1.5 yann@1: diff -u -r1.4 -r1.5 yann@1: --- libc/linuxthreads_db/td_thr_validate.c 6 Jul 2001 05:27:23 -0000 1.4 yann@1: +++ libc/linuxthreads_db/td_thr_validate.c 28 Dec 2001 16:41:29 -0000 1.5 yann@1: @@ -28,7 +28,7 @@ yann@1: int pthread_threads_max = th->th_ta_p->pthread_threads_max; yann@1: int cnt; yann@1: yann@1: - LOG (__FUNCTION__); yann@1: + LOG ("td_thr_validate"); yann@1: yann@1: /* Now get all descriptors, one after the other. */ yann@1: for (cnt = 0; cnt < pthread_threads_max; ++cnt, ++handles)