亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? time.cdl

?? eCos/RedBoot for勤研ARM AnywhereII(4510) 含全部源代碼
?? CDL
字號:
# ====================================================================
#
#      time.cdl
#
#      C library time related configuration data
#
# ====================================================================
#####ECOSGPLCOPYRIGHTBEGIN####
## -------------------------------------------
## This file is part of eCos, the Embedded Configurable Operating System.
## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
##
## eCos is free software; you can redistribute it and/or modify it under
## the terms of the GNU General Public License as published by the Free
## Software Foundation; either version 2 or (at your option) any later version.
##
## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
## WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
## for more details.
##
## You should have received a copy of the GNU General Public License along
## with eCos; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
##
## As a special exception, if other files instantiate templates or use macros
## or inline functions from this file, or you compile this file and link it
## with other works to produce a work based on this file, this file does not
## by itself cause the resulting work to be covered by the GNU General Public
## License. However the source code for this file must still be made available
## in accordance with section (3) of the GNU General Public License.
##
## This exception does not invalidate any other reasons why a work based on
## this file might be covered by the GNU General Public License.
##
## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
## at http://sources.redhat.com/ecos/ecos-license/
## -------------------------------------------
#####ECOSGPLCOPYRIGHTEND####
# ====================================================================
######DESCRIPTIONBEGIN####
#
# Author(s):      jlarmour
# Contributors:
# Date:           2000-04-14
#
#####DESCRIPTIONEND####
#
# ====================================================================

cdl_package CYGPKG_LIBC_TIME {
    display       "ISO C library date and time functions"
    description   "
        This package provides time functions specified by the
        ISO C standard - ISO/IEC 9899:1990."
    doc           ref/libc.html
    include_dir   cyg/libc/time  
    parent        CYGPKG_LIBC
    implements    CYGINT_ISO_C_TIME_TYPES
    implements    CYGINT_ISO_C_CLOCK_FUNCS
    requires      { CYGBLD_ISO_C_TIME_TYPES_HEADER == "<cyg/libc/time/time.h>" }
    requires      { CYGBLD_ISO_C_CLOCK_FUNCS_HEADER == \                       "<cyg/libc/time/time.h>" }
    requires      CYGPKG_ISOINFRA
    requires      CYGINT_ISO_DIV
    requires      CYGINT_ISO_ABS

    # Note: the POSIX files asctime_r,ctime_r,gmtime_r and
    # localtime_r should be built all the time, not just in
    # CYGFUN_LIBC_TIME_POSIX because the internal definitions
    # are used by the ISO C functions regardless. Otherwise we
    # get problems with certain inlining combinations. [Bug 1000001]

    compile       asctime.cxx       clock.cxx      \                  ctime.cxx         difftime.cxx   \                  gmtime.cxx        localtime.cxx  \                  mktime.cxx        settime.cxx    \                  strftime.cxx      time.cxx       \                  timeutil.cxx      asctime_r.cxx  \                  ctime_r.cxx       gmtime_r.cxx   \                  localtime_r.cxx 


# ====================================================================

    cdl_option CYGSEM_LIBC_TIME_CLOCK_WORKING {
        display       "Working clock() function"
        requires      CYGFUN_KERNEL_THREADS_TIMER
        requires      CYGVAR_KERNEL_COUNTERS_CLOCK
        default_value 1
        description   "
            This option controls whether clock() will
            actually try and determine the process time
            usage. With this option disabled, clock() does
            not disappear, but will permanently return
            (clock_t)-1 as mandated by the ISO C standard."
    }
    
    cdl_option CYGSEM_LIBC_TIME_TIME_WORKING {
        display       "Working time() function"
        requires      CYGPKG_IO_WALLCLOCK
        default_value 1
        description   "
            This option controls whether time() will
            actually try and determine the current calendar
            time. With this option disabled, time() does
            not disappear, but will permanently return
            (time_t)-1 as mandated by the ISO C standard."
    }
    
    cdl_option CYGSEM_LIBC_TIME_SETTIME_WORKING {
        display       "Working cyg_libc_time_settime() function"
        requires      CYGPKG_IO_WALLCLOCK
        default_value 1
        description   "
            This option controls whether cyg_libc_time_settime()
            will actually try and set the current calendar
            time. With this option disabled,
            cyg_libc_time_settime() does not disappear, but
            will permanently return an error."
    }
    
    cdl_option CYGFUN_LIBC_TIME_POSIX {
        display       "POSIX time functions"
        default_value 1
        requires      CYGINT_ISO_STRING_BSD_FUNCS
        compile       strptime.cxx
        description   "
            Enabling this option allows the use of the
            following functions defined in POSIX 1003.1:
            asctime_r(), ctime_r(), gmtime_r(), strptime(), and
            localtime_r()."
    }

    cdl_option CYGFUN_LIBC_TIME_SUS_EXTNS {
	display       "Single UNIX extensions"
	default_value 0
	description   "
            Enabling this option allows the use of
            certain additional conversion specifiers
            in the strftime function."
    }

    cdl_component CYGPKG_LIBC_TIME_ZONES {
        display       "Time zone offsets"
        flavor        none
        description   "
            These options control the default STandarD (STD)
            and Daylight Savings Time (DST)
            time offsets so that dates can be set correctly
            for the local environment."
        
        cdl_option CYGNUM_LIBC_TIME_DST_DEFAULT_STATE {
            display       "Default Daylight Savings Time state"
            flavor        data
            legal_values  -- -1 to 1
            default_value -- -1
            description   "
                This option controls whether the initial
                time environment is set up as STD, DST or
                unknown. Use the value 1 for DST, 0 for STD, 
                and (-1) for unknown. This can also be set at
                runtime using the cyg_libc_time_setdst()
                function."
        }
    
        cdl_option CYGNUM_LIBC_TIME_STD_DEFAULT_OFFSET {
            display       "Default Standard Time offset"
            flavor        data
            legal_values  -- -90000 to 90000
            default_value -- 0
            description   "
                This option controls the offset from UTC in
                seconds when in local Standard Time. This
                value can be positive or negative. It
                can also be set at run time using the
                cyg_libc_time_setzoneoffsets() function."
        }
    
        cdl_option CYGNUM_LIBC_TIME_DST_DEFAULT_OFFSET {
            display       "Default Daylight Savings Time offset"
            flavor        data
            legal_values  -- -90000 to 90000
            default_value -- 3600
            description   "
                This option controls the offset from UTC in
                seconds when in local Daylight Savings Time. This
                value can be positive or negative. It
                can also be set at run time using the
                cyg_libc_time_setzoneoffsets() function."
        }
    }        
    
    cdl_component CYGPKG_LIBC_TIME_INLINES {
        display       "Inline functions"
        flavor        none
        description   "
            These options control whether certain functions
            are available in inline form. This may lead to
            faster code at the expense of code space. But for
            some functions, or some functions with constant
            arguments, it may in fact lead to smaller code."
    
        cdl_option CYGIMP_LIBC_TIME_ASCTIME_INLINE {
            display       "asctime()"
            default_value 1
            description   "
                Allow the asctime() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_CTIME_INLINE {
            display       "ctime()"
            default_value 1
            description   "
                Allow the ctime() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_DIFFTIME_INLINE {
            display       "difftime()"
            default_value 1
            description   "
                Allow the difftime() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_GMTIME_INLINE {
            display       "gmtime()"
            default_value 1
            description   "
                Allow the gmtime() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_LOCALTIME_INLINE {
            display       "localtime()"
            default_value 1
            description   "
                Allow the localtime() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_MKTIME_INLINE {
            display       "mktime()"
            default_value 1
            description   "
                Allow the mktime() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_ASCTIME_R_INLINE {
            display       "asctime_r()"
            requires      CYGFUN_LIBC_TIME_POSIX
            default_value 1
            description   "
                Allow the asctime_r() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_CTIME_R_INLINE {
            display       "ctime_r()"
            requires      CYGFUN_LIBC_TIME_POSIX
            default_value 1
            description   "
                Allow the ctime_r() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_GMTIME_R_INLINE {
            display       "gmtime_r()"
            requires      CYGFUN_LIBC_TIME_POSIX
            default_value 1
            description   "
                Allow the gmtime_r() function to be inlined"
        }
    
        cdl_option CYGIMP_LIBC_TIME_LOCALTIME_R_INLINE {
            display       "localtime_r()"
            requires      CYGFUN_LIBC_TIME_POSIX
            default_value 1
            description   "
                Allow the localtime_r() function to be inlined"
        }
    }
# FIXME: Also want "inline all" and "don't inline any" options which requires
# (or not) all the above, but
# if we do that then we will require the ones that also depend on
# CYGFUN_LIBC_TIME_POSIX :-( Wait for full CDL to fix this
    
    cdl_option CYGNUM_LIBC_TIME_CLOCK_TRACE_LEVEL {
        display       "clock() tracing level"
        flavor        data
        legal_values  0 to 1
        default_value 0
        description   "
            Trace verbosity level for debugging the clock()
            function. Increase this value to get
            additional trace output when tracing is enabled."
    }

    cdl_component CYGPKG_LIBC_TIME_OPTIONS {
        display "C library time functions build options"
        flavor  none
        no_define
        description   "
	    Package specific build options including control over
	    compiler flags used only in building this package,
	    and details of which tests are built."


        cdl_option CYGPKG_LIBC_TIME_CFLAGS_ADD {
            display "Additional compiler flags"
            flavor  data
            no_define
            default_value { "-Wno-format" }
            description   "
                This option modifies the set of compiler flags for
                building the C library. These flags are used in addition
                to the set of global flags."
        }

        cdl_option CYGPKG_LIBC_TIME_CFLAGS_REMOVE {
            display "Suppressed compiler flags"
            flavor  data
            no_define
            default_value { "" }
            description   "
                This option modifies the set of compiler flags for
                building the C library. These flags are removed from
                the set of global flags if present."
        }

        cdl_option CYGPKG_LIBC_TIME_TESTS {
            display "C library time and date function tests"
            flavor  data
            no_define
            calculated { 
                "tests/asctime tests/clock tests/ctime tests/gmtime tests/localtime tests/mktime tests/strftime tests/time " 
                . (CYGFUN_LIBC_TIME_POSIX ? "tests/strptime" : "")
            }
            description   "
                This option specifies the set of tests for the C library
                time and date functions."
        }
    }
}

# ====================================================================
# EOF time.cdl

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国一区二区三区| 奇米精品一区二区三区在线观看| 欧美成人免费网站| 欧美久久久久久久久久| 91国偷自产一区二区使用方法| 99精品国产99久久久久久白柏| 成人黄色一级视频| 一本大道久久a久久精二百| 91一区在线观看| 欧美日韩亚洲综合在线 | 久久精品国内一区二区三区| 日韩精品免费专区| 精品在线亚洲视频| 成人理论电影网| 91麻豆国产福利在线观看| 在线视频欧美区| 日韩一区二区精品在线观看| 精品国产免费人成电影在线观看四季 | 成人黄色a**站在线观看| www.在线成人| 欧美日韩一级片在线观看| 日韩欧美激情一区| 国产精品卡一卡二卡三| 亚洲成人黄色小说| 粉嫩欧美一区二区三区高清影视| 91丨九色丨尤物| 日韩欧美一级二级| 亚洲欧洲日韩综合一区二区| 亚洲国产欧美在线| 国产91清纯白嫩初高中在线观看| 在线一区二区视频| 欧美成人猛片aaaaaaa| 亚洲免费观看高清完整版在线 | 国产精品99久久久久久似苏梦涵| 成人动漫一区二区| 91麻豆精品国产91久久久更新时间 | 亚欧色一区w666天堂| 免费不卡在线视频| 91影院在线观看| 日韩欧美激情一区| 亚洲在线观看免费视频| 国产精品1024久久| 欧美一区二区三区视频免费 | 色狠狠色噜噜噜综合网| 欧美精品一区二区在线播放| 亚洲成人你懂的| 99久久久精品| 国产日产欧产精品推荐色| 亚洲第一在线综合网站| 99热精品一区二区| 国产三区在线成人av| 青青草精品视频| 欧美丝袜丝交足nylons| 国产精品美女久久久久久| 久久99国内精品| 在线不卡的av| 亚洲妇女屁股眼交7| 不卡在线观看av| 久久久噜噜噜久久人人看| 秋霞成人午夜伦在线观看| 色综合久久九月婷婷色综合| 亚洲国产精品99久久久久久久久| 精品一区二区免费视频| 欧美一区二区精美| 天堂资源在线中文精品| 欧美在线看片a免费观看| 亚洲精品免费在线播放| 91亚洲大成网污www| 国产精品午夜免费| 成人av资源网站| 亚洲视频一区在线| 91视频精品在这里| 一区二区三国产精华液| 在线亚洲欧美专区二区| 亚洲激情图片一区| 欧美在线|欧美| 日日摸夜夜添夜夜添亚洲女人| 制服丝袜亚洲色图| 美女看a上一区| 久久久精品人体av艺术| 国产成人aaa| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 99久久精品国产精品久久| 亚洲精品中文字幕乱码三区| 91首页免费视频| 天天综合网天天综合色| 精品女同一区二区| 国产成人精品三级| 亚洲欧美综合另类在线卡通| 在线观看视频一区二区欧美日韩| 香蕉成人啪国产精品视频综合网| 欧美三级欧美一级| 麻豆成人91精品二区三区| 久久久亚洲精品石原莉奈| 国产激情视频一区二区在线观看| 国产欧美日韩视频一区二区| 色哟哟一区二区| 亚洲mv在线观看| 久久精品人人做人人综合| aaa亚洲精品一二三区| 一区二区不卡在线视频 午夜欧美不卡在| 欧美视频一区在线| 开心九九激情九九欧美日韩精美视频电影| 国产午夜久久久久| 在线亚洲一区二区| 久久 天天综合| 亚洲女人小视频在线观看| 56国语精品自产拍在线观看| 国产综合久久久久久鬼色 | 欧美日韩精品一区二区在线播放| 奇米一区二区三区| 亚洲欧美日韩成人高清在线一区| 欧美一区二区在线不卡| 成人性视频网站| 男男视频亚洲欧美| 亚洲人成网站色在线观看| 91精品在线免费观看| 92国产精品观看| 韩国精品一区二区| 亚洲欧美电影院| 国产午夜亚洲精品羞羞网站| 在线播放日韩导航| 99精品视频一区二区三区| 伦理电影国产精品| 丝袜亚洲另类欧美综合| 成人免费在线播放视频| 欧美精品一区二区三区很污很色的 | 亚洲精品久久久久久国产精华液| 日韩女优av电影在线观看| 欧美伊人久久久久久久久影院| 国产成人自拍在线| 寂寞少妇一区二区三区| 亚洲成人综合网站| 一区二区国产盗摄色噜噜| 国产精品私房写真福利视频| 日韩精品一区二区三区在线播放 | 欧美一区二区视频网站| 99vv1com这只有精品| 成人午夜激情在线| 国产成人亚洲精品青草天美| 蜜桃av一区二区在线观看| 五月激情综合婷婷| 午夜欧美一区二区三区在线播放| 中文字幕日韩一区| 国产精品免费久久久久| 国产喂奶挤奶一区二区三区| www激情久久| 国产亚洲人成网站| 国产日韩三级在线| 国产三级精品三级在线专区| 国产欧美日韩不卡| 中文字幕乱码日本亚洲一区二区| 久久精品在线观看| 久久精品欧美一区二区三区不卡| 久久久久久久综合色一本| 久久久久久久综合日本| 国产欧美日韩激情| 亚洲欧美日韩国产成人精品影院| 有坂深雪av一区二区精品| 亚洲精品日日夜夜| 日韩高清不卡一区二区| 美女www一区二区| 国产在线精品一区二区夜色| 国产一区二区成人久久免费影院| 美女网站色91| 国产成人av福利| 一本到三区不卡视频| 欧美三区在线视频| 91精品国产91热久久久做人人 | 在线视频一区二区三区| 欧美色网一区二区| 精品国产一二三区| 国产精品成人一区二区艾草 | 大白屁股一区二区视频| 99久久精品国产一区二区三区| 欧美色倩网站大全免费| 69堂国产成人免费视频| 国产欧美一区二区三区鸳鸯浴| 亚洲欧美一区二区不卡| 亚洲第一主播视频| 国产成人自拍在线| 欧美日韩精品一区二区| 精品av久久707| 最好看的中文字幕久久| 亚洲精品视频在线观看网站| 亚洲一区在线看| 久久成人羞羞网站| 国产成人夜色高潮福利影视| 日本韩国精品在线| 日韩精品在线看片z| 国产精品网站在线观看| 天堂va蜜桃一区二区三区漫画版| 国产精品一区二区免费不卡| 97超碰欧美中文字幕| 日韩精品一区在线观看| 伊人色综合久久天天人手人婷| 久久se精品一区精品二区| 色噜噜狠狠成人网p站| 2023国产精华国产精品| 亚洲一区二区三区爽爽爽爽爽|