This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"C:\Program Files\Java\jdk1.7.0_25\bin\javac.exe" -classpath ".\src" ^ | |
src\ru\ifmo\ctddev\isaev\Implementor.java | |
"C:\Program Files\Java\jdk1.7.0_25\bin\java.exe" -classpath .\src;^ | |
..\java-advanced-2014\lib\hamcrest-core-1.3.jar;^ | |
..\java-advanced-2014\lib\junit-4.11.jar;^ | |
..\java-advanced-2014\lib\quickcheck-0.6.jar;^ | |
..\Tests.jar ^ | |
info.kgeorgiy.java.advanced.implementor.Tester class ru.ifmo.ctddev.isaev.Implementor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"C:\Program Files\Java\jdk1.7.0_25\bin\javac.exe" -classpath ".\src" ^ | |
src\ru\ifmo\ctddev\isaev\Implementor.java | |
"C:\Program Files\Java\jdk1.7.0_25\bin\java.exe" -classpath .\src;^ | |
..\java-advanced-2014\lib\hamcrest-core-1.3.jar;^ | |
..\java-advanced-2014\lib\junit-4.11.jar;^ | |
..\java-advanced-2014\lib\quickcheck-0.6.jar;^ | |
..\Tests.jar ^ | |
info.kgeorgiy.java.advanced.implementor.Tester class ru.ifmo.ctddev.isaev.Implementor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.ifmo.ctddev.isaev; | |
import info.kgeorgiy.java.advanced.implementor.Impler; | |
import info.kgeorgiy.java.advanced.implementor.ImplerException; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.io.PrintWriter; | |
import java.lang.reflect.Constructor; | |
import java.lang.reflect.Method; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ян. Лекция 3. | |
План: | |
1. память -> mmap, fork | |
2. -> vfs - virtual file system (упрощённая семантика read, write) | |
__________________________ | |
Process r = (r,mmn)~>Context (secure process) | |
r - регистр | |
mmn - таблица маппинга из виртуальных адресов в физические | |
Хотим чтобы для каждого процесса mmn был свой. pid (!-> - функция с явным конечным представлением)!-> ProcInfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
section .text | |
global _fact | |
_fact: | |
mov ecx, [esp+4] | |
mov eax,1 | |
jmp for | |
for: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern __imp__MessageBoxA@16 | |
extern __imp__ExitProcess@4 | |
%assign MB_ICONINFORMATION 40h | |
section .text | |
global _start2 | |
_start2: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <gmpxx.h> | |
#include <gmp.h> | |
using namespace std; | |
template<class S> | |
struct point_t{ | |
S x; | |
S y; |
NewerOlder