!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/include/asm-arm/arch-nexuspci/   drwxr-xr-x
Free 318.36 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     time.h (1.46 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * linux/include/asm-arm/arch-nexuspci/time.h
 *
 * Copyright (c) 1997, 1998, 1999, 2000 FutureTV Labs Ltd.
 *
 * The FTV PCI card has no real-time clock.  We get timer ticks from the
 * SCC chip.
 */

/*
 * This program 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 of the License, or (at your option) any later version.
 */

static void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{
    static int count = 25;
    unsigned char stat = __raw_readb(DUART_BASE + 0x14);
    if (!(stat & 0x10))
        return;        /* Not for us */

    /* Reset counter */
    __raw_writeb(0x90, DUART_BASE + 8);

    if (--count == 0) {
        static int state = 1;
        state ^= 1;
        __raw_writeb(0x1a + state, INTCONT_BASE);
        __raw_writeb(0x18 + state, INTCONT_BASE);
        count = 50;
    }

    /* Wait for slow rise time */
    __raw_readb(DUART_BASE + 0x14);
    __raw_readb(DUART_BASE + 0x14);
    __raw_readb(DUART_BASE + 0x14);
    __raw_readb(DUART_BASE + 0x14);
    __raw_readb(DUART_BASE + 0x14);
    __raw_readb(DUART_BASE + 0x14);

    do_timer(regs);    
}

static inline void setup_timer(void)
{
    int tick = 3686400 / 16 / 2 / 100;

    __raw_writeb(tick & 0xff, DUART_BASE + 0x1c);
    __raw_writeb(tick >> 8, DUART_BASE + 0x18);
    __raw_writeb(0x80, DUART_BASE + 8);
    __raw_writeb(0x10, DUART_BASE + 0x14);

    timer_irq.handler = timer_interrupt;
    timer_irq.flags = SA_SHIRQ;

    setup_arm_irq(IRQ_TIMER, &timer_irq);
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0157 ]--