From owner-p4-projects@FreeBSD.ORG Tue Jul 25 11:01:08 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id D922E16A4E6; Tue, 25 Jul 2006 11:01:07 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B51B16A4E2 for ; Tue, 25 Jul 2006 11:01:07 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A1BC43D49 for ; Tue, 25 Jul 2006 11:01:07 +0000 (GMT) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6PB17YF037631 for ; Tue, 25 Jul 2006 11:01:07 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6PB17uP037628 for perforce@freebsd.org; Tue, 25 Jul 2006 11:01:07 GMT (envelope-from rdivacky@FreeBSD.org) Date: Tue, 25 Jul 2006 11:01:07 GMT Message-Id: <200607251101.k6PB17uP037628@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rdivacky@FreeBSD.org using -f From: Roman Divacky To: Perforce Change Reviews Cc: Subject: PERFORCE change 102361 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2006 11:01:08 -0000 http://perforce.freebsd.org/chv.cgi?CH=102361 Change 102361 by rdivacky@rdivacky_witten on 2006/07/25 11:00:52 Change all the timer_* functions to use l_timer_t instead of timer_t. Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/syscalls.master#15 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/syscalls.master#15 (text+ko) ==== @@ -428,12 +428,12 @@ 257 AUE_NULL MSTD { int linux_remap_file_pages(void); } 258 AUE_NULL MSTD { int linux_set_tid_address(int *tidptr); } 259 AUE_NULL MSTD { int linux_timer_create(clockid_t clock_id, \ - struct sigevent *evp, timer_t *timerid); } -260 AUE_NULL MSTD { int linux_timer_settime(timer_t timerid, \ + struct sigevent *evp, l_timer_t *timerid); } +260 AUE_NULL MSTD { int linux_timer_settime(l_timer_t timerid, \ const struct itimerspec *new, struct itimerspec *old); } -261 AUE_NULL MSTD { int linux_timer_gettime(timer_t timerid, struct itimerspec *setting); } -262 AUE_NULL MSTD { int linux_timer_getoverrun(timer_t timerid); } -263 AUE_NULL MSTD { int linux_timer_delete(timer_t timerid); } +261 AUE_NULL MSTD { int linux_timer_gettime(l_timer_t timerid, struct itimerspec *setting); } +262 AUE_NULL MSTD { int linux_timer_getoverrun(l_timer_t timerid); } +263 AUE_NULL MSTD { int linux_timer_delete(l_timer_t timerid); } 264 AUE_CLOCK_SETTIME MSTD { int linux_clock_settime(clockid_t which, struct linux_timespec *tp); } 265 AUE_NULL MSTD { int linux_clock_gettime(clockid_t which, struct linux_timespec *tp); } 266 AUE_NULL MSTD { int linux_clock_getres(clockid_t which, struct linux_timespec *tp); }