Aysun (given name)

Aysun (pronounced [ˈajsun]) is a common female Turkish given name. In Turkish, "Aysun" means "(a person) whose face is as beautiful as the moon".

Aysun
GenderFeminine
Language(s)Turkish
Origin
Language(s)Turkish
Word/name"ay"
Derivation1. "ay"
2. "sun"
Meaning1. "moon"
2. a suffix
Other names
See alsoAybike, Aybüke, Ayça, Ayda, Aydan, Ayla, Aylin, Aysel, Aysu, İlkay

People

Fictional characters

gollark: I mean, I really only need to change the implementations, or specifically the specific implementation which happens to run on my laptop.
gollark: Well, I intend for it to work differently, so obviously glibc or something is wrong. Maybe I can muck with the program counter somehow.
gollark: * syscalls and whatever
gollark: So I should work out some way to live-patch the kernel to increase the amount of signal-safe functions?
gollark: ```c#include <stdio.h>#include <signal.h>#include <string.h>#include <stdlib.h>#include <sys/mman.h>#include <unistd.h>static void handler(int sig, siginfo_t *info, void *literally_bee) { printf("oh bee oh apio segfault %08x\n", info->si_addr); int ps = getpagesize(); long ad = (long)info->si_addr; ad = ad - (ad % ps); mmap((void*)ad, 0x10000, PROT_NONE, MAP_ANONYMOUS|MAP_FIXED, -1, 0);}int main() { struct sigaction sa; sigemptyset(&sa.sa_mask); sa.sa_flags = SA_NODEFER; sa.sa_sigaction = handler; sigaction(SIGSEGV, &sa, NULL); *(int*)NULL = -3; printf("thing done\n"); return 0;}```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.