!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-sparc64/   drwxr-xr-x
Free 318.37 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:     semaphore.h (5.09 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef _SPARC64_SEMAPHORE_H
#define _SPARC64_SEMAPHORE_H

/* These are actually reasonable on the V9.
 *
 * See asm-ppc/semaphore.h for implementation commentary,
 * only sparc64 specific issues are commented here.
 */
#ifdef __KERNEL__

#include <asm/atomic.h>
#include <asm/system.h>
#include <linux/wait.h>
#include <linux/rwsem.h>

struct semaphore {
    atomic_t count;
    wait_queue_head_t wait;
};

#define __SEMAPHORE_INITIALIZER(name, count) \
    { ATOMIC_INIT(count), \
      __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) }

#define __MUTEX_INITIALIZER(name) \
    __SEMAPHORE_INITIALIZER(name, 1)

#define __DECLARE_SEMAPHORE_GENERIC(name, count) \
    struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)

#define DECLARE_MUTEX(name)        __DECLARE_SEMAPHORE_GENERIC(name, 1)
#define DECLARE_MUTEX_LOCKED(name)    __DECLARE_SEMAPHORE_GENERIC(name, 0)

static inline void sema_init (struct semaphore *sem, int val)
{
    atomic_set(&sem->count, val);
    init_waitqueue_head(&sem->wait);
}

static inline void init_MUTEX (struct semaphore *sem)
{
    sema_init(sem, 1);
}

static inline void init_MUTEX_LOCKED (struct semaphore *sem)
{
    sema_init(sem, 0);
}

extern void __down(struct semaphore * sem);
extern int  __down_interruptible(struct semaphore * sem);
extern void __up(struct semaphore * sem);

static __inline__ void down(struct semaphore * sem)
{
    /* This atomically does:
     *     old_val = sem->count;
     *    new_val = sem->count - 1;
     *    sem->count = new_val;
     *    if (old_val < 1)
     *        __down(sem);
     *
     * The (old_val < 1) test is equivalent to
     * the more straightforward (new_val < 0),
     * but it is easier to test the former because
     * of how the CAS instruction works.
     */

    __asm__ __volatile__("\n"
"    ! down sem(%0)\n"
"1:    lduw    [%0], %%g5\n"
"    sub    %%g5, 1, %%g7\n"
"    cas    [%0], %%g5, %%g7\n"
"    cmp    %%g5, %%g7\n"
"    bne,pn    %%icc, 1b\n"
"     cmp    %%g7, 1\n"
"    bl,pn    %%icc, 3f\n"
"     membar    #StoreLoad | #StoreStore\n"
"2:\n"
"    .subsection 2\n"
"3:    mov    %0, %%g5\n"
"    save    %%sp, -160, %%sp\n"
"    mov    %%g1, %%l1\n"
"    mov    %%g2, %%l2\n"
"    mov    %%g3, %%l3\n"
"    call    %1\n"
"     mov    %%g5, %%o0\n"
"    mov    %%l1, %%g1\n"
"    mov    %%l2, %%g2\n"
"    ba,pt    %%xcc, 2b\n"
"     restore %%l3, %%g0, %%g3\n"
"    .previous\n"
    : : "r" (sem), "i" (__down)
    : "g5", "g7", "memory", "cc");
}

static __inline__ int down_interruptible(struct semaphore *sem)
{
    int ret = 0;
    
    /* This atomically does:
     *     old_val = sem->count;
     *    new_val = sem->count - 1;
     *    sem->count = new_val;
     *    if (old_val < 1)
     *        ret = __down_interruptible(sem);
     *
     * The (old_val < 1) test is equivalent to
     * the more straightforward (new_val < 0),
     * but it is easier to test the former because
     * of how the CAS instruction works.
     */

    __asm__ __volatile__("\n"
"    ! down_interruptible sem(%2) ret(%0)\n"
"1:    lduw    [%2], %%g5\n"
"    sub    %%g5, 1, %%g7\n"
"    cas    [%2], %%g5, %%g7\n"
"    cmp    %%g5, %%g7\n"
"    bne,pn    %%icc, 1b\n"
"     cmp    %%g7, 1\n"
"    bl,pn    %%icc, 3f\n"
"     membar    #StoreLoad | #StoreStore\n"
"2:\n"
"    .subsection 2\n"
"3:    mov    %2, %%g5\n"
"    save    %%sp, -160, %%sp\n"
"    mov    %%g1, %%l1\n"
"    mov    %%g2, %%l2\n"
"    mov    %%g3, %%l3\n"
"    call    %3\n"
"     mov    %%g5, %%o0\n"
"    mov    %%l1, %%g1\n"
"    mov    %%l2, %%g2\n"
"    mov    %%l3, %%g3\n"
"    ba,pt    %%xcc, 2b\n"
"     restore %%o0, %%g0, %0\n"
"    .previous\n"
    : "=r" (ret)
    : "0" (ret), "r" (sem), "i" (__down_interruptible)
    : "g5", "g7", "memory", "cc");
    return ret;
}

static __inline__ int down_trylock(struct semaphore *sem)
{
    int ret;

    /* This atomically does:
     *     old_val = sem->count;
     *    new_val = sem->count - 1;
     *    if (old_val < 1) {
     *        ret = 1;
     *    } else {
     *        sem->count = new_val;
     *        ret = 0;
     *    }
     *
     * The (old_val < 1) test is equivalent to
     * the more straightforward (new_val < 0),
     * but it is easier to test the former because
     * of how the CAS instruction works.
     */

    __asm__ __volatile__("\n"
"    ! down_trylock sem(%1) ret(%0)\n"
"1:    lduw    [%1], %%g5\n"
"    sub    %%g5, 1, %%g7\n"
"    cmp    %%g5, 1\n"
"    bl,pn    %%icc, 2f\n"
"     mov    1, %0\n"
"    cas    [%1], %%g5, %%g7\n"
"    cmp    %%g5, %%g7\n"
"    bne,pn    %%icc, 1b\n"
"     mov    0, %0\n"
"    membar    #StoreLoad | #StoreStore\n"
"2:\n"
    : "=&r" (ret)
    : "r" (sem)
    : "g5", "g7", "memory", "cc");

    return ret;
}

static __inline__ void up(struct semaphore * sem)
{
    /* This atomically does:
     *     old_val = sem->count;
     *    new_val = sem->count + 1;
     *    sem->count = new_val;
     *    if (old_val < 0)
     *        __up(sem);
     *
     * The (old_val < 0) test is equivalent to
     * the more straightforward (new_val <= 0),
     * but it is easier to test the former because
     * of how the CAS instruction works.
     */

    __asm__ __volatile__("\n"
"    ! up sem(%0)\n"
"    membar    #StoreLoad | #LoadLoad\n"
"1:    lduw    [%0], %%g5\n"
"    add    %%g5, 1, %%g7\n"
"    cas    [%0], %%g5, %%g7\n"
"    cmp    %%g5, %%g7\n"
"    bne,pn    %%icc, 1b\n"
"     addcc    %%g7, 1, %%g0\n"
"    ble,pn    %%icc, 3f\n"
"     membar    #StoreLoad | #StoreStore\n"
"2:\n"
"    .subsection 2\n"
"3:    mov    %0, %%g5\n"
"    save    %%sp, -160, %%sp\n"
"    mov    %%g1, %%l1\n"
"    mov    %%g2, %%l2\n"
"    mov    %%g3, %%l3\n"
"    call    %1\n"
"     mov    %%g5, %%o0\n"
"    mov    %%l1, %%g1\n"
"    mov    %%l2, %%g2\n"
"    ba,pt    %%xcc, 2b\n"
"     restore %%l3, %%g0, %%g3\n"
"    .previous\n"
    : : "r" (sem), "i" (__up)
    : "g5", "g7", "memory", "cc");
}

#endif /* __KERNEL__ */

#endif /* !(_SPARC64_SEMAPHORE_H) */

:: 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.0085 ]--