https://github.com/torvalds/linux
Revision 9a949a98596c45763299158b9018f3491e3cbf99 authored by Linus Torvalds on 25 June 2016, 13:49:32 UTC, committed by Linus Torvalds on 25 June 2016, 13:49:32 UTC
Pull x86 kprobe fix from Thomas Gleixner:
 "A single fix clearing the TF bit when a fault is single stepped"

* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  kprobes/x86: Clear TF bit in fault on single-stepping
2 parent s 57801c1 + dcfc472
Raw File
Tip revision: 9a949a98596c45763299158b9018f3491e3cbf99 authored by Linus Torvalds on 25 June 2016, 13:49:32 UTC
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Tip revision: 9a949a9
check-lc_ctype.c
/*
 * Check that a specified locale works as LC_CTYPE.  Used by the
 * DocBook build system to probe for C.UTF-8 support.
 */

#include <locale.h>

int main(void)
{
	return !setlocale(LC_CTYPE, "");
}
back to top