search for: _get_

Displaying 8 results from an estimated 8 matches for "_get_".

Did you mean: get_
2014 May 08
1
[PATCH v10 07/19] qspinlock: Use a simple write to grab the lock, if applicable
...t; +static __always_inline void get_qlock(struct qspinlock *lock) set_locked() > +{ > + struct __qspinlock *l = (void *)lock; > + > + barrier(); > + ACCESS_ONCE(l->locked) = _Q_LOCKED_VAL; > + barrier(); > +} get_qlock() is just horrible. The function doesn't actually _get_ anything, and qlock is not in line with the rest of the naming.
2014 May 08
1
[PATCH v10 07/19] qspinlock: Use a simple write to grab the lock, if applicable
...t; +static __always_inline void get_qlock(struct qspinlock *lock) set_locked() > +{ > + struct __qspinlock *l = (void *)lock; > + > + barrier(); > + ACCESS_ONCE(l->locked) = _Q_LOCKED_VAL; > + barrier(); > +} get_qlock() is just horrible. The function doesn't actually _get_ anything, and qlock is not in line with the rest of the naming.
1999 Apr 12
1
Problems with coda
I have successfully installed coda in R, and I am also able to read output from a Bugs run into coda. When I try to plots from CODA Output Analysis Menu, I do however _get_ problems: CODA Output Analysis Menu ************************* 1:Plots 2:Statistics 3:List/Change Options 4:Return to Main Menu Selection: 1 Error: "missing" illegal use of missing Quitting CODA.... Do you want to save the BUGS output as an R object file(y/n) ? 1: I tried to use...
2006 Jun 22
0
Status of vorbis-tahseen branch -- OggSkeleton support in vorbisfile
...compatibility (my earlier commits broke compatibility). Please, if possible check the branch and give feedbacks. Anyone interseted in working for theora support can look at my eariler works, though it wouldn't help much. If anyone is intersted on this, the best way for it maybe to modify the _get_*_page method to skip any non-vorbis pages. How to know which type of stream (vorbis/theora) a certain page belongs to would be a challenge because of binary compatibility issue. I did attempt to make such modification but failed for my lack of understanding of how excactly those methods works. I do...
2017 Dec 29
0
Wine release 3.0-rc4
...ls of different 32/64 bitness. kernel32/tests: Add missing todos for 64-bit. ntdll: NtQuerySection takes SIZE_T parameters. bcrypt: macOS version 10.8 is needed for encryption support. Andrey Gusev (1): quartz/tests: Fix resource leak. Gijs Vermeulen (1): msvcrt: Add _get_[winmajor|winminor|osver]. Henri Verbeet (2): ddraw/tests: Introduce an ARRAY_SIZE macro to ddraw7 as well. ddraw/tests: Print driver and device information before running the tests. Michael Stefaniuc (2): shell32/tests: Use the available ARRAY_SIZE() macro. d3dx9/tests: Us...
2005 Mar 05
9
Best practice to manage ''id'' hacking?
In my app, a user logs in [via the login generator] and has access to details of his account, and transactions attached to his account. This is achieved in the standard rail manner by passing the account id or transaction id between the controller and the view. But what is to stop someone hacking the URL or view html to access another account id or transaction id ? eg /account/show/46 becomes
2014 May 07
32
[PATCH v10 00/19] qspinlock: a 4-byte queue spinlock with PV support
v9->v10: - Make some minor changes to qspinlock.c to accommodate review feedback. - Change author to PeterZ for 2 of the patches. - Include Raghavendra KT's test results in patch 18. v8->v9: - Integrate PeterZ's version of the queue spinlock patch with some modification: http://lkml.kernel.org/r/20140310154236.038181843 at infradead.org - Break the more complex
2014 May 07
32
[PATCH v10 00/19] qspinlock: a 4-byte queue spinlock with PV support
v9->v10: - Make some minor changes to qspinlock.c to accommodate review feedback. - Change author to PeterZ for 2 of the patches. - Include Raghavendra KT's test results in patch 18. v8->v9: - Integrate PeterZ's version of the queue spinlock patch with some modification: http://lkml.kernel.org/r/20140310154236.038181843 at infradead.org - Break the more complex