私はmalloc sbrkが呼び出されるシステムコールであることを知っています。同様に、malloedメモリ(ヒープメモリ)に書き込むときに呼び出されるシステムcalは何ですか
int main
{
/* 10 byte of heap memory allocated */
char *ptr = malloc(5);
ptr[0] = 10; // **What is the system call invoked for
writing into this heap memory** ?????
}