!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-headers-2.6.24-28/include/linux/   drwxr-xr-x
Free 1.06 GB of 97.11 GB (1.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     spinlock_up.h (1.94 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef __LINUX_SPINLOCK_UP_H
#define __LINUX_SPINLOCK_UP_H

#ifndef __LINUX_SPINLOCK_H
# error "please don't include this file directly"
#endif

/*
 * include/linux/spinlock_up.h - UP-debug version of spinlocks.
 *
 * portions Copyright 2005, Red Hat, Inc., Ingo Molnar
 * Released under the General Public License (GPL).
 *
 * In the debug case, 1 means unlocked, 0 means locked. (the values
 * are inverted, to catch initialization bugs)
 *
 * No atomicity anywhere, we are on UP.
 */

#ifdef CONFIG_DEBUG_SPINLOCK
#define __raw_spin_is_locked(x)        ((x)->slock == 0)

static inline void __raw_spin_lock(raw_spinlock_t *lock)
{
    lock->slock = 0;
}

static inline void
__raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long flags)
{
    local_irq_save(flags);
    lock->slock = 0;
}

static inline int __raw_spin_trylock(raw_spinlock_t *lock)
{
    char oldval = lock->slock;

    lock->slock = 0;

    return oldval > 0;
}

static inline void __raw_spin_unlock(raw_spinlock_t *lock)
{
    lock->slock = 1;
}

/*
 * Read-write spinlocks. No debug version.
 */
#define __raw_read_lock(lock)        do { (void)(lock); } while (0)
#define __raw_write_lock(lock)        do { (void)(lock); } while (0)
#define __raw_read_trylock(lock)    ({ (void)(lock); 1; })
#define __raw_write_trylock(lock)    ({ (void)(lock); 1; })
#define __raw_read_unlock(lock)        do { (void)(lock); } while (0)
#define __raw_write_unlock(lock)    do { (void)(lock); } while (0)

#else /* DEBUG_SPINLOCK */
#define __raw_spin_is_locked(lock)    ((void)(lock), 0)
/* for sched.c and kernel_lock.c: */
# define __raw_spin_lock(lock)        do { (void)(lock); } while (0)
# define __raw_spin_unlock(lock)    do { (void)(lock); } while (0)
# define __raw_spin_trylock(lock)    ({ (void)(lock); 1; })
#endif /* DEBUG_SPINLOCK */

#define __raw_read_can_lock(lock)    (((void)(lock), 1))
#define __raw_write_can_lock(lock)    (((void)(lock), 1))

#define __raw_spin_unlock_wait(lock) \
        do { cpu_relax(); } while (__raw_spin_is_locked(lock))

#endif /* __LINUX_SPINLOCK_UP_H */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0057 ]--