Skip to content

Instantly share code, notes, and snippets.

@AeroNotix

AeroNotix/rtm.c Secret

Last active September 20, 2018 20:32
Show Gist options
  • Save AeroNotix/31897c8714e53777c29e9713376fda8d to your computer and use it in GitHub Desktop.
Save AeroNotix/31897c8714e53777c29e9713376fda8d to your computer and use it in GitHub Desktop.
#include <immintrin.h>
#include "stdio.h"
void main(void) {
unsigned transaction_started = _xbegin();
if (transaction_started == _XBEGIN_STARTED) {
puts("started");
_xend();
} else {
printf("%d\n", transaction_started);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment