PKUOS - Pintos
Pintos source browser for PKU Operating System course
pt-grow-bad.c
Go to the documentation of this file.
1/** Read from an address 4,096 bytes below the stack pointer.
2 The process must be terminated with -1 exit code. */
3
4#include <string.h>
5#include "tests/arc4.h"
6#include "tests/cksum.h"
7#include "tests/lib.h"
8#include "tests/main.h"
9
10void
12{
13 asm volatile ("movl -4096(%esp), %eax");
14}
void test_main(void)
Read from an address 4,096 bytes below the stack pointer.
Definition: pt-grow-bad.c:11