-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublications.html
1392 lines (1363 loc) · 79.5 KB
/
publications.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html >
<head><title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="TeX4ht (https://tug.org/tex4ht/)">
<meta name="originator" content="TeX4ht (https://tug.org/tex4ht/)">
<!-- html -->
<meta name="src" content="publications.tex">
<link rel="stylesheet" type="text/css" href="publications.css">
</head><body
>
<div class="center"
>
<!--l. 24--><p class="noindent" >
<!--l. 25--><p class="noindent" ><span
class="ptmrc8t-x-x-144">P<span
class="small-caps">U</span><span
class="small-caps">B</span><span
class="small-caps">L</span><span
class="small-caps">I</span><span
class="small-caps">C</span><span
class="small-caps">A</span><span
class="small-caps">T</span><span
class="small-caps">I</span><span
class="small-caps">O</span><span
class="small-caps">N</span><span
class="small-caps">S</span></span><br /><br />
<span
class="ptmrc8t-x-x-120">C<span
class="small-caps">H</span><span
class="small-caps">R</span><span
class="small-caps">I</span><span
class="small-caps">S</span><span
class="small-caps">T</span><span
class="small-caps">O</span><span
class="small-caps">P</span><span
class="small-caps">H</span> M. K<span
class="small-caps">I</span><span
class="small-caps">R</span><span
class="small-caps">S</span><span
class="small-caps">C</span><span
class="small-caps">H</span></span><br />
<a
href="mailto:[email protected]" >[email protected]</a><br />
<a
href="https://www.cs.uni-salzburg.at/~ck" >www.cs.uni-salzburg.at/<span
class="cmsy-10">~</span>ck</a></div>
<a
id="x1-1doc"></a>
<!--l. 68--><p class="noindent" ><span class="underline"><span
class="ptmrc8t-x-x-120">C<span
class="small-caps">O</span><span
class="small-caps">N</span><span
class="small-caps">F</span><span
class="small-caps">E</span><span
class="small-caps">R</span><span
class="small-caps">E</span><span
class="small-caps">N</span><span
class="small-caps">C</span><span
class="small-caps">E</span> <span
class="small-caps">A</span><span
class="small-caps">N</span><span
class="small-caps">D</span> W<span
class="small-caps">O</span><span
class="small-caps">R</span><span
class="small-caps">K</span><span
class="small-caps">S</span><span
class="small-caps">H</span><span
class="small-caps">O</span><span
class="small-caps">P</span> P<span
class="small-caps">A</span><span
class="small-caps">P</span><span
class="small-caps">E</span><span
class="small-caps">R</span><span
class="small-caps">S</span></span> </span>
<dl class="thebibliography"><dt id="X1-SIGMOD22" class="thebibliography">
[1] </dt><dd
id="bib-1" class="thebibliography">
<!--l. 69--><p class="noindent" ><a id="page.1"></a><a
href="publications.html" id="X1-" ></a>T. Hütter et al. “JEDI: These aren’t the JSON documents you’re looking for...” In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Conference on Management of Data (SIGMOD)</span>. ACM, 2022. <a
href="https://ckirsch.github.io/publications/conferences/SIGMOD22-Jedi.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-OOPSLA21" class="thebibliography">
[2] </dt><dd
id="bib-2" class="thebibliography">
<!--l. 69--><p class="noindent" >A. Goel et al. “What We Eval in the Shadows: A Large-Scale Study of Eval in R Programs”. In: <span
class="ptmri8t-">Proc. ACM</span>
<span
class="ptmri8t-">SIGPLAN Conference on Systems, Programming, Languages, and Applications: Software for Humanity</span>
<span
class="ptmri8t-">(OOPSLA)</span>. ACM, 2021. <a
href="https://ckirsch.github.io/publications/conferences/OOPSLA21-Eval.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-ASE21" class="thebibliography">
[3] </dt><dd
id="bib-3" class="thebibliography">
<!--l. 69--><p class="noindent" >A.S. Abyaneh and C.M. Kirsch. “ASE: A Value Set Decision Procedure for Symbolic Execution”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">IEEE/ACM International Conference on Automated Software Engineering (ASE)</span>. IEEE/ACM, 2021. <a
href="https://ckirsch.github.io/publications/conferences/ASE21-ASE.pdf" >Click
here for PDF file</a>.
</dd><dt id="X1-MoreVMs18" class="thebibliography">
[4] </dt><dd
id="bib-4" class="thebibliography">
<!--l. 69--><p class="noindent" >A.S. Abyaneh et al. “Selfie: Towards Minimal Symbolic Execution”. In: <span
class="ptmri8t-">Online Proc. Workshop on Modern</span>
<span
class="ptmri8t-">Language Runtimes, Ecosystems, and VMs (MoreVMs)</span>. 2018. <a
href="https://ckirsch.github.io/publications/conferences/MoreVMs18-Selfie.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-RTSSWIP17" class="thebibliography">
[5] </dt><dd
id="bib-5" class="thebibliography">
<!--l. 69--><p class="noindent" >P. Donat-Bouillud and C.M. Kirsch. “Work in Progress: Adaptive Scheduling with Approximate Computing
of Audio Graphs”. In: <span
class="ptmri8t-">Proc. IEEE Real-Time Systems Symposium (RTSS)</span>. 2017. <a
href="https://ckirsch.github.io/publications/conferences/RTSSWIP17-AdaptiveScheduling.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-Onward17" class="thebibliography">
[6] </dt><dd
id="bib-6" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch. “Selfie and the Basics”. In: <span
class="ptmri8t-">Proc. ACM SIGPLAN International Symposium on New Ideas,</span>
<span
class="ptmri8t-">New Paradigms, and Reflections on Programming and Software (Onward!) </span>ACM, 2017. <a
href="https://ckirsch.github.io/publications/conferences/Onward17-Selfie.pdf" >Click here for PDF
file</a>.
</dd><dt id="X1-CONCUR16" class="thebibliography">
[7] </dt><dd
id="bib-7" class="thebibliography">
<!--l. 69--><p class="noindent" >A. Haas et al. “Local Linearizability for Concurrent Container-Type Data Structures”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Concurrency Theory (CONCUR)</span>. Schloss Dagstuhl - Leibniz-Zentrum fuer
Informatik, 2016, 6:1–6:15. <span
class="ptmrc8t-"><span
class="small-caps">D</span><span
class="small-caps">O</span><span
class="small-caps">I</span></span>: <a
href="https://doi.org/10.4230/LIPIcs.CONCUR.2016.6" >10.4230/LIPIcs.CONCUR.2016.6</a>. <a
href="https://ckirsch.github.io/publications/conferences/CONCUR16-LocalLinearizability.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-OOPSLA15" class="thebibliography">
[8] </dt><dd
id="bib-8" class="thebibliography">
<!--l. 69--><p class="noindent" >M. Aigner et al. “Fast, Multicore-Scalable, Low-Fragmentation Memory Allocation through Large
Virtual Memory and Global Data Structures”. In: <span
class="ptmri8t-">Proc. ACM SIGPLAN Conference on Object-Oriented</span>
<span
class="ptmri8t-">Programming, Systems, Languages, and Applications (OOPSLA)</span>. ACM, 2015. <a
href="https://ckirsch.github.io/publications/conferences/OOPSLA15-Scalloc.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-SWEC15" class="thebibliography">
[9] </dt><dd
id="bib-9" class="thebibliography">
<!--l. 69--><p class="noindent" >E. Pereira et al. “A Runtime System for Logical-Space Programming”. In: <span
class="ptmri8t-">Proc. Workshop on the Swarm</span>
<span
class="ptmri8t-">at the Edge of the Cloud (SWEC)</span>. 2015. <a
href="https://ckirsch.github.io/publications/conferences/SWEC15-LogicalSpaceProgramming.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-POPL15" class="thebibliography">
[10] </dt><dd
id="bib-10" class="thebibliography">
<!--l. 69--><p class="noindent" >M. Dodds, A. Haas, and C.M. Kirsch. “A Scalable, Correct Time-Stamped Stack”. In: <span
class="ptmri8t-">Proc. Symposium on</span>
<span
class="ptmri8t-">Principles of Programming Languages (POPL)</span>. ACM, 2015. <a
href="https://ckirsch.github.io/publications/conferences/POPL15-TSStack.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-DLS14" class="thebibliography">
[11] </dt><dd
id="bib-11" class="thebibliography">
<!--l. 69--><p class="noindent" >M. Aigner et al. “ACDC-JS: Explorative Benchmarking of JavaScript Memory Management”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">Dynamic Languages Symposium (DLS)</span>. ACM, 2014. <a
href="https://ckirsch.github.io/publications/conferences/DLS14-ACDCJS.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-CyPhy14" class="thebibliography">
[12] </dt><dd
id="bib-12" class="thebibliography">
<!--l. 69--><p class="noindent" >C. Krainer and C.M. Kirsch. “Cyber-Physical Cloud Computing Implemented as PaaS”. In: <span
class="ptmri8t-">Proc. Workshop</span>
<span
class="ptmri8t-">on Design, Modeling, and Evaluation of Cyber-Physical Systems (CyPhy)</span>. ACM, 2014. <a
href="https://ckirsch.github.io/publications/conferences/CyPhy14-CPCCPaaS.pdf" >Click here for PDF
file</a>.
</dd><dt id="X1-PaCT13" class="thebibliography">
[13] </dt><dd
id="bib-13" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch, M. Lippautz, and H. Payer. “Fast and Scalable, Lock-free k-FIFO Queues”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Parallel Computing Technologies (PaCT)</span>. LNCS. Springer, 2013. <a
href="https://ckirsch.github.io/publications/conferences/PaCT13-FastScalableQueues.pdf" >Click here
for PDF file</a>.
</dd><dt id="X1-PoS13" class="thebibliography">
[14] </dt><dd
id="bib-14" class="thebibliography">
<!--l. 69--><p class="noindent" >M. Aigner et al. “Analysis of Portfolio-Style Parallel SAT Solving on Current Multi-Core Architectures”.
In: <span
class="ptmri8t-">Proc. Workshop on Pragmatics of SAT (PoS)</span>. EPiC. EasyChair, 2013. <a
href="https://ckirsch.github.io/publications/conferences/PoS13-AnalysisPortfolioSAT.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-ISMM13" class="thebibliography">
[15] </dt><dd
id="bib-15" class="thebibliography">
<!--l. 69--><p class="noindent" >M. Aigner and C.M. Kirsch. “ACDC: Towards a Universal Mutator for Benchmarking Heap Management
Systems”. In: <span
class="ptmri8t-">Proc. International Symposium on Memory Management (ISMM)</span>. ACM, 2013. <a
href="https://ckirsch.github.io/publications/conferences/ISMM13-ACDC.pdf" >Click here
for PDF file</a>.
</dd><dt id="X1-SysCon13" class="thebibliography">
[16] </dt><dd
id="bib-16" class="thebibliography">
<!--l. 69--><p class="noindent" >E. Pereira et al. “Modeling and Controlling the Structure of Heterogeneous Mobile Robotic Systems: A
BigActor Approach”. In: <span
class="ptmri8t-">International Systems Conference (SysCon)</span>. IEEE, 2013. <a
href="https://ckirsch.github.io/publications/conferences/SysCon13-BigActors.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-ICCPS13" class="thebibliography">
[17] </dt><dd
id="bib-17" class="thebibliography">
<!--l. 69--><p class="noindent" >E. Pereira et al. “BigActors - A Model for Structure-aware Computation”. In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Conference on Cyber-Physical Systems (ICCPS)</span>. ACM, 2013. <a
href="https://ckirsch.github.io/publications/conferences/ICCPS13-BigActors.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-POPL13" class="thebibliography">
[18] </dt><dd
id="bib-18" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger et al. “Quantitative Relaxation of Concurrent Data Structures”. In: <span
class="ptmri8t-">Proc. Symposium on</span>
<span
class="ptmri8t-">Principles of Programming Languages (POPL)</span>. ACM, 2013. <a
href="https://ckirsch.github.io/publications/conferences/POPL13-QuantitativeRelaxation.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EUC12" class="thebibliography">
[19] </dt><dd
id="bib-19" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas and C.M. Kirsch. “The Power of Isolation”. In: <span
class="ptmri8t-">Proc. International Conference on Embedded</span>
<span
class="ptmri8t-">and Ubiquitous Computing (EUC)</span>. IEEE, 2012. <a
href="https://ckirsch.github.io/publications/conferences/EUC12-PowerIsolation.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-RACES12" class="thebibliography">
[20] </dt><dd
id="bib-20" class="thebibliography">
<!--l. 69--><p class="noindent" >A. Haas et al. “How FIFO is Your Concurrent FIFO Queue?” In: <span
class="ptmri8t-">Proc. OOPSLA Workshop on Relaxing</span>
<span
class="ptmri8t-">Synchronization for Multicore and Manycore Scalability (RACES)</span>. 2012. <a
href="https://ckirsch.github.io/publications/conferences/RACES12-HowFIFO.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-ICA3PP12" class="thebibliography">
[21] </dt><dd
id="bib-21" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch et al. “Performance, Scalability, and Semantics of Concurrent FIFO Queues”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Algorithms and Architectures for Parallel Processing (ICA3PP)</span>. LNCS.
Springer, 2012. <a
href="https://ckirsch.github.io/publications/conferences/ICA3PP12-Scal.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-DAC12" class="thebibliography">
[22] </dt><dd
id="bib-22" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch and H. Payer. “Incorrect Systems: It’s not the Problem, It’s the Solution”. In: <span
class="ptmri8t-">Proc. Design</span>
<span
class="ptmri8t-">Automation Conference (DAC)</span>. ACM, 2012. <a
href="https://ckirsch.github.io/publications/conferences/DAC12-Incorrectness.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-DATE12" class="thebibliography">
[23] </dt><dd
id="bib-23" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch et al. “Cyber-Physical Cloud Computing: The Binding and Migration Problem”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Design, Automation and Test in Europe (DATE)</span>. 2012. <a
href="https://ckirsch.github.io/publications/conferences/DATE12-CPCC.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-ICONS12" class="thebibliography">
[24] </dt><dd
id="bib-24" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch, H. Payer, and H. Röck. “Hierarchical PLABs, CLABs, TLABs in Hotspot”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Systems (ICONS)</span>. 2012. <a
href="https://ckirsch.github.io/publications/conferences/ICONS12-HAB.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-AASGNC12" class="thebibliography">
[25] </dt><dd
id="bib-25" class="thebibliography">
<!--l. 69--><p class="noindent" >H. Chen et al. “Cloud Computing on Wings: Applications to Air Quality”. In: <span
class="ptmri8t-">Proc. American Astronautical</span>
<span
class="ptmri8t-">Society Guidance and Control Conference (AASGNC)</span>. AAS, 2012. <a
href="https://ckirsch.github.io/publications/conferences/AASGNC12-CloudComputingWings.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-ACSD11" class="thebibliography">
[26] </dt><dd
id="bib-26" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch et al. “Runtime Programming through Model-Preserving, Scalable Runtime Patches”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Application of Concurrency to System Design (ACSD)</span>. IEEE, 2011, pp. 77–86.
<a
href="https://ckirsch.github.io/publications/conferences/ACSD11-RuntimeProgramming.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-PODC11" class="thebibliography">
[27] </dt><dd
id="bib-27" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch et al. “Brief Announcement: Scalability versus Semantics of Concurrent FIFO Queues”. In:
<span
class="ptmri8t-">Proc. Symposium on Principles of Distributed Computing (PODC)</span>. ACM, 2011, pp. 331–332. <a
href="https://ckirsch.github.io/publications/conferences/PODC11-BA-ScalabilityVersusSemantics.pdf" >Click here
for PDF file</a>.
</dd><dt id="X1-ISMM11" class="thebibliography">
[28] </dt><dd
id="bib-28" class="thebibliography">
<!--l. 69--><p class="noindent" >M. Aigner et al. “Short-term Memory for Self-collecting Mutators”. In: <span
class="ptmri8t-">Proc. International Symposium on</span>
<span
class="ptmri8t-">Memory Management (ISMM)</span>. ACM, 2011. <a
href="https://ckirsch.github.io/publications/conferences/ISMM11-ShortTermMemory.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-FACS10" class="thebibliography">
[29] </dt><dd
id="bib-29" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch et al. “Runtime Programming through Model-Preserving, Scalable Runtime Patches”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Workshop on Formal Aspects of Component Software (FACS), Doctoral Track</span>. Vol. 6921.
LNCS. Springer, 2010, pp. 290–294. <a
href="https://ckirsch.github.io/publications/conferences/FACS10-RuntimeProgramming.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EMSOFT10" class="thebibliography">
[30] </dt><dd
id="bib-30" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas, C.M. Kirsch, and A. Sokolova. “Power-aware Temporal Isolation with Variable-Bandwidth
Servers”. In: <span
class="ptmri8t-">Proc. International Conference on Embedded Software (EMSOFT)</span>. ACM, 2010. <a
href="https://ckirsch.github.io/publications/conferences/EMSOFT10-PowerAwareTemporalIsolation.pdf" >Click here
for PDF file</a>.
</dd><dt id="X1-HotCloud10" class="thebibliography">
[31] </dt><dd
id="bib-31" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas et al. “Information-Acquisition-as-a-Service for Cyber-Physical Cloud Computing”. In:
<span
class="ptmri8t-">Proc. Workshop on Hot Topics in Cloud Computing (HotCloud)</span>. USENIX, 2010. <a
href="https://ckirsch.github.io/publications/conferences/HotCloud10-CPCC.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-RTAS10" class="thebibliography">
[32] </dt><dd
id="bib-32" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas, C.M. Kirsch, and A. Sokolova. “Response Time versus Utilization in Scheduler Overhead
Accounting”. In: <span
class="ptmri8t-">Proc. Real-Time and Embedded Technology and Applications Symposium (RTAS)</span>. IEEE,
2010. <a
href="https://ckirsch.github.io/publications/conferences/RTAS10-SchedulerOverheadAccounting.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-RTSS09" class="thebibliography">
[33] </dt><dd
id="bib-33" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger et al. “Distributed, Modular HTL”. In: <span
class="ptmri8t-">Proc. Real-Time Systems Symposium (RTSS)</span>. IEEE,
2009. <a
href="https://ckirsch.github.io/publications/conferences/RTSS09-HTL.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-RePP09" class="thebibliography">
[34] </dt><dd
id="bib-34" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas, C.M. Kirsch, and A. Sokolova. “A Workload-oriented Programming Model for Temporal
Isolation with VBS”. In: <span
class="ptmri8t-">Online Proc. Workshop on Reconciling Performance with Predictability (RePP)</span>.
2009. <a
href="https://ckirsch.github.io/publications/conferences/RePP09-WorkloadOrientedProgramming.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-JTRES09" class="thebibliography">
[35] </dt><dd
id="bib-35" class="thebibliography">
<!--l. 69--><p class="noindent" >H. Röck et al. “Avoiding Unbounded Priority Inversion in Barrier Protocols Using Gang Priority
Management”. In: <span
class="ptmri8t-">Proc. International Workshop on Java Technologies for Real-time and Embedded</span>
<span
class="ptmri8t-">Systems (JTRES)</span>. ACM, 2009. <a
href="https://ckirsch.github.io/publications/conferences/JTRES09-GPM.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-SIES09" class="thebibliography">
[36] </dt><dd
id="bib-36" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas et al. “Programmable Temporal Isolation through Variable-Bandwidth Servers”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">Symposium on Industrial Embedded Systems (SIES)</span>. IEEE, 2009. <a
href="https://ckirsch.github.io/publications/conferences/SIES09-VBS.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-RTAS09b" class="thebibliography">
[37] </dt><dd
id="bib-37" class="thebibliography">
<!--l. 69--><p class="noindent" >K. Hedrick et al. “CSL: A Language to Specify and Re-Specify Mobile Sensor Network Behaviors”. In:
<span
class="ptmri8t-">Proc. Real-Time and Embedded Technology and Applications Symposium (RTAS)</span>. IEEE, 2009. <a
href="https://ckirsch.github.io/publications/conferences/RTAS09-CSL.pdf" >Click here
for PDF file</a>.
</dd><dt id="X1-IIES09" class="thebibliography">
[38] </dt><dd
id="bib-38" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas et al. “Programmable Temporal Isolation in Real-Time and Embedded Execution
Environments”. In: <span
class="ptmri8t-">Proc. Workshop on Isolation and Integration in Embedded Systems (IIES)</span>. ACM, 2009.
<a
href="https://ckirsch.github.io/publications/conferences/IIES09-TemporalIsolation.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-WISH09" class="thebibliography">
[39] </dt><dd
id="bib-39" class="thebibliography">
<!--l. 69--><p class="noindent" >H. Payer et al. “Combo Drive: Optimizing Cost and Performance in a Heterogeneous Storage Device”. In:
<span
class="ptmri8t-">Proc. Workshop on Integrating Solid-state Memory into the Storage Hierarchy (WISH)</span>. 2009. <a
href="https://ckirsch.github.io/publications/conferences/WISH09-ComboDrive.pdf" >Click here
for PDF file</a>.
</dd><dt id="X1-AIAAGNC08" class="thebibliography">
[40] </dt><dd
id="bib-40" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas et al. “The JAviator: A High-Payload Quadrotor UAV with High-Level Programming
Capabilities”. In: <span
class="ptmri8t-">Proc. AIAA Guidance, Navigation and Control Conference (GNC)</span>. 2008. <a
href="https://ckirsch.github.io/publications/conferences/AIAAGNC08-JAviator.pdf" >Click here for
PDF file</a>.
</dd><dt id="X1-USENIX08" class="thebibliography">
[41] </dt><dd
id="bib-41" class="thebibliography">
<!--l. 69--><p class="noindent" >S.S. Craciunas et al. “A Compacting Real-Time Memory Management System”. In: <span
class="ptmri8t-">Proc. USENIX Annual</span>
<span
class="ptmri8t-">Technical Conference</span>. 2008. <a
href="https://ckirsch.github.io/publications/conferences/USENIX08-CompactFit.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-APRES08" class="thebibliography">
[42] </dt><dd
id="bib-42" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch, L. Lopes, and E.R.B. Marques. “Semantics-Preserving and Incremental Runtime Patching of
Real-Time Programs”. In: <span
class="ptmri8t-">Proc. Workshop on Adaptive and Reconfigurable Embedded Systems (APRES)</span>.
2008. <a
href="https://ckirsch.github.io/publications/conferences/APRES08-RuntimePatching.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-DATE08" class="thebibliography">
[43] </dt><dd
id="bib-43" class="thebibliography">
<!--l. 69--><p class="noindent" >K. Chatterjee et al. “Logical Reliability of Interacting Real-Time Tasks”. In: <span
class="ptmri8t-">Proc. International Conference</span>
<span
class="ptmri8t-">on Design, Automation and Test in Europe (DATE)</span>. 2008. <a
href="https://ckirsch.github.io/publications/conferences/DATE08-LogicalReliability.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EMSOFT07b" class="thebibliography">
[44] </dt><dd
id="bib-44" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch and R. Wilhelm. “Grand Challenges in Embedded Software”. In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Conference on Embedded Software (EMSOFT)</span>. ACM, 2007, pp. 2–6.
</dd><dt id="X1-APGES07" class="thebibliography">
[45] </dt><dd
id="bib-45" class="thebibliography">
<!--l. 69--><p class="noindent" >A. Ghosal et al. “Separate Compilation of Hierarchical Real-Time Programs into Linear-Bounded
Embedded Machine Code”. In: <span
class="ptmri8t-">Online Proc. Workshop on Automatic Program Generation for Embedded</span>
<span
class="ptmri8t-">Systems (APGES)</span>. 2007. <a
href="https://ckirsch.github.io/publications/conferences/APGES07-SeparateCompilationLinearBoundedECode.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-LCTES07" class="thebibliography">
[46] </dt><dd
id="bib-46" class="thebibliography">
<!--l. 69--><p class="noindent" >J. Auerbach et al. “Java Takes Flight: Time-portable Real-time Programming with Exotasks”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">ACM SIGPLAN/SIGBED Conference on Languages, Compilers, and Tools for Embedded Systems (LCTES)</span>.
ACM, 2007. <a
href="https://ckirsch.github.io/publications/conferences/LCTES07-Exotasks.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EMSOFT06" class="thebibliography">
[47] </dt><dd
id="bib-47" class="thebibliography">
<!--l. 69--><p class="noindent" >A. Ghosal et al. “A Hierarchical Coordination Language for Interacting Real-Time Tasks”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Embedded Software (EMSOFT)</span>. ACM, 2006. <a
href="https://ckirsch.github.io/publications/conferences/EMSOFT06-HTL.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-VEE05" class="thebibliography">
[48] </dt><dd
id="bib-48" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch, M.A.A. Sanvido, and T.A. Henzinger. “A Programmable Microkernel for Real-Time
Systems”. In: <span
class="ptmri8t-">Proc. ACM/USENIX Conference on Virtual Execution Environments (VEE)</span>. ACM, 2005.
<a
href="https://ckirsch.github.io/publications/conferences/VEE05-ProgrammableMicrokernel.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-LCTES05" class="thebibliography">
[49] </dt><dd
id="bib-49" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger, C.M. Kirsch, and S. Matic. “Composable Code Generation for Distributed Giotto”. In:
<span
class="ptmri8t-">Proc. ACM SIGPLAN/SIGBED Conference on Languages, Compilers, and Tools for Embedded Systems</span>
<span
class="ptmri8t-">(LCTES)</span>. ACM, 2005. <a
href="https://ckirsch.github.io/publications/conferences/LCTES05-DistributedGiotto.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-MontereyWorkshop04" class="thebibliography">
[50] </dt><dd
id="bib-50" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch. “Threading by Appointment”. In: <span
class="ptmri8t-">Proc. Monterey Workshop</span>. CRC Press, 2004. <a
href="https://ckirsch.github.io/publications/conferences/MontereyWorkshop04-ThreadingByAppointment.pdf" >Click here for
PDF file</a>.
</dd><dt id="X1-EMSOFT04" class="thebibliography">
[51] </dt><dd
id="bib-51" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger and C.M. Kirsch. “A Typed Assembly Language for Real-Time Programs”. In: <span
class="ptmri8t-">Proc.</span>
<span
class="ptmri8t-">International Conference on Embedded Software (EMSOFT)</span>. ACM, 2004, pp. 104–113. <a
href="https://ckirsch.github.io/publications/conferences/EMSOFT04-TALForRealTimePrograms.pdf" >Click here for PDF
file</a>.
</dd><dt id="X1-HSCC04" class="thebibliography">
[52] </dt><dd
id="bib-52" class="thebibliography">
<!--l. 69--><p class="noindent" >A. Ghosal et al. “Event-driven Programming with Logical Execution Times”. In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Workshop on Hybrid Systems: Computation and Control (HSCC)</span>. Vol. 2993. LNCS. Springer, 2004,
pp. 357–371. <a
href="https://ckirsch.github.io/publications/conferences/HSCC04-EventDrivenProgramming.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EMSOFT03" class="thebibliography">
[53] </dt><dd
id="bib-53" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger, C.M. Kirsch, and S. Matic. “Schedule-Carrying Code”. In: <span
class="ptmri8t-">Proc. International Conference</span>
<span
class="ptmri8t-">on Embedded Software (EMSOFT)</span>. Vol. 2855. LNCS. Springer, 2003, pp. 241–256. <a
href="https://ckirsch.github.io/publications/conferences/EMSOFT03-ScheduleCarryingCode.pdf" >Click here for PDF
file</a>.
</dd><dt id="X1-PLDI02" class="thebibliography">
[54] </dt><dd
id="bib-54" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger and C.M. Kirsch. “The Embedded Machine: Predictable, Portable Real-Time Code”. In:
<span
class="ptmri8t-">Proc. ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI)</span>. ACM,
2002, pp. 315–326. <a
href="https://ckirsch.github.io/publications/conferences/PLDI02-EmbeddedMachine.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EMSOFT02a" class="thebibliography">
[55] </dt><dd
id="bib-55" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger et al. “Time Safety Checking for Embedded Programs”. In: <span
class="ptmri8t-">Proc. International Workshop</span>
<span
class="ptmri8t-">on Embedded Software (EMSOFT)</span>. Vol. 2491. LNCS. Springer, 2002, pp. 76–92. <a
href="https://ckirsch.github.io/publications/conferences/EMSOFT02-TimeSafetyChecking.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EMSOFT02b" class="thebibliography">
[56] </dt><dd
id="bib-56" class="thebibliography">
<!--l. 69--><p class="noindent" >C.M. Kirsch et al. “A Giotto-Based Helicopter Control System”. In: <span
class="ptmri8t-">Proc. International Workshop on</span>
<span
class="ptmri8t-">Embedded Software (EMSOFT)</span>. Vol. 2491. LNCS. Springer, 2002, pp. 46–60. <a
href="https://ckirsch.github.io/publications/conferences/EMSOFT02-GiottoHelicopterControl.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-EMSOFT01a" class="thebibliography">
[57] </dt><dd
id="bib-57" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger, B. Horowitz, and C.M. Kirsch. “Giotto: A Time-triggered Language for Embedded
Programming”. In: <span
class="ptmri8t-">Proc. International Workshop on Embedded Software (EMSOFT)</span>. Vol. 2211. LNCS.
Springer, 2001, pp. 166–184. <a
href="https://ckirsch.github.io/publications/conferences/EMSOFT01-Giotto.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-LCTES01" class="thebibliography">
[58] </dt><dd
id="bib-58" class="thebibliography">
<!--l. 69--><p class="noindent" >T.A. Henzinger, B. Horowitz, and C.M. Kirsch. “Embedded Control Systems Development with Giotto”.
In: <span
class="ptmri8t-">Proc. ACM SIGPLAN Workshop on Languages, Compilers, and Tools for Embedded Systems (LCTES)</span>.
ACM, 2001. <a
href="https://ckirsch.github.io/publications/conferences/LCTES01-GiottoDevelopment.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-DASC01" class="thebibliography">
[59] </dt><dd
id="bib-59" class="thebibliography">
<!--l. 69--><p class="noindent" >T.B. Brown et al. “A Reusable and Platform-Independent Framework for Distributed Control Systems”. In:
<span
class="ptmri8t-">Proc. Digital Avionics Systems Conference (DASC)</span>. IEEE, 2001. <a
href="https://ckirsch.github.io/publications/conferences/DASC01-ReusableFramework.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-LICS99" class="thebibliography">
[60] </dt><dd
id="bib-60" class="thebibliography">
<!--l. 69--><p class="noindent" >H. Ganzinger, C. Meyer, and M. Veanes. “The Two-Variable Guarded Fragment with Transitive Relations”.
In: <span
class="ptmri8t-">Proc. Symposium on Logic in Computer Science (LICS)</span>. IEEE, 1999. <a
href="https://ckirsch.github.io/publications/conferences/LICS99-TwoVariableGuardedFragment.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-AIML98" class="thebibliography">
[61] </dt><dd
id="bib-61" class="thebibliography">
<!--l. 69--><p class="noindent" >H. Ganzinger et al. “A Resolution-Based Decision Procedure for Extensions of K4”. In: <span
class="ptmri8t-">Proc. Workshop</span>
<span
class="ptmri8t-">on Advances in Modal Logic (AiML)</span>. Vol. 2. Lecture Notes. CSLI Publications, Stanford, CA, 1998. <a
href="https://ckirsch.github.io/publications/conferences/AIML98-DecisionProcedureK4.pdf" >Click
here for PDF file</a>.
</dd><dt id="X1-RTA98" class="thebibliography">
[62] </dt><dd
id="bib-62" class="thebibliography">
<!--l. 69--><p class="noindent" >F. Jacquemard, C. Meyer, and C. Weidenbach. “Unification in Extensions of Shallow Equational Theories”.
In: <span
class="ptmri8t-">Proc. International Conference on Rewriting Techniques and Applications (RTA)</span>. Vol. 1379. LNCS.
Springer, 1998. <a
href="https://ckirsch.github.io/publications/conferences/RTA98-ShallowEquationalTheories.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-CADE97" class="thebibliography">
[63] </dt><dd
id="bib-63" class="thebibliography">
<!--l. 69--><p class="noindent" >H. Ganzinger, C. Meyer, and C. Weidenbach. “Soft Typing for Ordered Resolution”. In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Conference on Automated Deduction (CADE)</span>. Vol. 1249. LNCS. Springer, 1997. <a
href="https://ckirsch.github.io/publications/conferences/CADE97-SoftTyping.pdf" >Click here for PDF file</a>.
</dd><dt id="X1-CADE96" class="thebibliography">
[64] </dt><dd
id="bib-64" class="thebibliography">
<!--l. 69--><p class="noindent" >P. Graf and C. Meyer. “Advanced Indexing Operations on Substitution Trees”. In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Conference on Automated Deduction (CADE)</span>. Vol. 1104. LNCS. Springer, 1996. <a
href="https://ckirsch.github.io/publications/conferences/CADE96-AdvancedSubstitutionTrees.pdf" >Click here for PDF file</a>.</dd></dl>
<!--l. 85--><p class="noindent" ><span class="underline"><span
class="ptmrc8t-x-x-120">J<span
class="small-caps">O</span><span
class="small-caps">U</span><span
class="small-caps">R</span><span
class="small-caps">N</span><span
class="small-caps">A</span><span
class="small-caps">L</span> P<span
class="small-caps">A</span><span
class="small-caps">P</span><span
class="small-caps">E</span><span
class="small-caps">R</span><span
class="small-caps">S</span></span> </span>
<dl class="thebibliography"><dt id="X2-ZFHE23" class="thebibliography">
[1] </dt><dd
id="bib-65" class="thebibliography">
<!--l. 86--><p class="noindent" ><a id="page.6"></a><a
href="publications.html" id="X2-" ></a>R. Ambros et al. “Two-Year Progress of Pilot
Research Activities in Teaching Digital Thinking Project (TDT)”. In: <span
class="ptmri8t-">Zeitschrift f</span><span
class="ptmri8t-">ür Hochschulentwicklung</span>
18 (2023). Ed. by Martin Ebner and Charlotte Zwiauer, pp. 117–136. <span
class="ptmrc8t-"><span
class="small-caps">D</span><span
class="small-caps">O</span><span
class="small-caps">I</span></span>: <a
href="https://doi.org/10.3217/zfhe-SH-HL/07" >10.3217/zfhe-SH-HL/07</a>. <span
class="ptmrc8t-"><span
class="small-caps">U</span><span
class="small-caps">R</span><span
class="small-caps">L</span></span>:
<a
href="https://zfhe.at/index.php/zfhe/article/view/1755" class="url" ><span
class="pcrr8t-">https://zfhe.at/index.php/zfhe/article/view/1755</span></a>. <a
href="https://ckirsch.github.io/publications/journals/ZFHE23-TDT.pdf" >Click here for PDF file</a>.
</dd><dt id="X2-INFORMS15" class="thebibliography">
[2] </dt><dd
id="bib-66" class="thebibliography">
<!--l. 86--><p class="noindent" >J. Huang, C.M. Kirsch, and R. Sengupta. “Cloud Computing in Space”. In: <span
class="ptmri8t-">INFORMS Journal on</span>
<span
class="ptmri8t-">Computing </span>27.4 (2015), pp. 704–717. <span
class="ptmrc8t-"><span
class="small-caps">D</span><span
class="small-caps">O</span><span
class="small-caps">I</span></span>: <a
href="https://doi.org/10.1287/ijoc.2015.0652" >10.1287/ijoc.2015.0652</a>.
</dd><dt id="X2-STTT13" class="thebibliography">
[3] </dt><dd
id="bib-67" class="thebibliography">
<!--l. 86--><p class="noindent" >S.S. Craciunas et al. “Temporal Isolation in Real-Time Systems: The VBS Approach”. In: <span
class="ptmri8t-">Software Tools</span>
<span
class="ptmri8t-">for Technology Transfer (STTT) </span>15.3 (2013), pp. 189–209. <a
href="https://ckirsch.github.io/publications/journals/STTT13-VBS.pdf" >Click here for PDF file</a>.
</dd><dt id="X2-SCP12" class="thebibliography">
[4] </dt><dd
id="bib-68" class="thebibliography">
<!--l. 86--><p class="noindent" >A. Ghosal et al. “Separate Compilation of Hierarchical Real-Time Programs into Linear-bounded
Embedded Machine Code”. In: <span
class="ptmri8t-">Science of Computer Programming </span>77.2 (2012), pp. 96–112.
</dd><dt id="X2-TECS09" class="thebibliography">
[5] </dt><dd
id="bib-69" class="thebibliography">
<!--l. 86--><p class="noindent" >J. Auerbach et al. “Low-Latency Time-portable Real-time Programming with Exotasks”. In: <span
class="ptmri8t-">ACM</span>
<span
class="ptmri8t-">Transactions on Embedded Computing Systems (TECS) </span>8.2 (Jan. 2009), pp. 1–48. <a
href="https://ckirsch.github.io/publications/journals/TECS09-Exotasks.pdf" >Click here for PDF file</a>.
</dd><dt id="X2-OSR08" class="thebibliography">
[6] </dt><dd
id="bib-70" class="thebibliography">
<!--l. 86--><p class="noindent" >S.S. Craciunas, C.M. Kirsch, and H. Röck. “I/O Resource Management through System Call Scheduling”.
In: <span
class="ptmri8t-">ACM Operating Systems Review (OSR), Special Issue on Research and Developments in the Linux</span>
<span
class="ptmri8t-">Kernel </span>(July 2008). <a
href="https://ckirsch.github.io/publications/journals/ACM-OSR08-SystemCallScheduling.pdf" >Click here for PDF file</a>.
</dd><dt id="X2-TOPLAS07" class="thebibliography">
[7] </dt><dd
id="bib-71" class="thebibliography">
<!--l. 86--><p class="noindent" >T.A. Henzinger and C.M. Kirsch. “The Embedded Machine: Predictable, Portable Real-Time Code”. In:
<span
class="ptmri8t-">ACM Transactions on Programming Languages and Systems (TOPLAS) </span>29.6 (Oct. 2007), pp. 33–61. <a
href="https://ckirsch.github.io/publications/journals/TOPLAS07-TheEmbeddedMachine.pdf" >Click
here for PDF file</a>.
</dd><dt id="X2-IEEE03" class="thebibliography">
[8] </dt><dd
id="bib-72" class="thebibliography">
<!--l. 86--><p class="noindent" >T.A. Henzinger, B. Horowitz, and C.M. Kirsch. “Giotto: A Time-triggered Language for Embedded
Programming”. In: <span
class="ptmri8t-">Proceedings of the IEEE </span>91.1 (Jan. 2003), pp. 84–99. <a
href="https://ckirsch.github.io/publications/journals/ProcIEEE03-Giotto.pdf" >Click here for PDF file</a>.
</dd><dt id="X2-CSM03" class="thebibliography">
[9] </dt><dd
id="bib-73" class="thebibliography">
<!--l. 86--><p class="noindent" >T.A. Henzinger et al. “From Control Models to Real-Time Code using Giotto”. In: <span
class="ptmri8t-">IEEE Control Systems</span>
<span
class="ptmri8t-">Magazine (CSM) </span>23.1 (Feb. 2003), pp. 50–64. <a
href="https://ckirsch.github.io/publications/journals/IEEE-CSM03-ControlModelsRTCode.pdf" >Click here for PDF file</a>.</dd></dl>
<!--l. 100--><p class="noindent" ><span class="underline"><span
class="ptmrc8t-x-x-120">I<span
class="small-caps">N</span><span
class="small-caps">V</span><span
class="small-caps">I</span><span
class="small-caps">T</span><span
class="small-caps">E</span><span
class="small-caps">D</span> P<span
class="small-caps">A</span><span
class="small-caps">P</span><span
class="small-caps">E</span><span
class="small-caps">R</span><span
class="small-caps">S</span> <span
class="small-caps">A</span><span
class="small-caps">N</span><span
class="small-caps">D</span> A<span
class="small-caps">B</span><span
class="small-caps">S</span><span
class="small-caps">T</span><span
class="small-caps">R</span><span
class="small-caps">A</span><span
class="small-caps">C</span><span
class="small-caps">T</span><span
class="small-caps">S</span></span> </span>
<dl class="thebibliography"><dt id="X3-VMIL18" class="thebibliography">
[1] </dt><dd
id="bib-74" class="thebibliography">
<!--l. 101--><p class="noindent" ><a id="page.7"></a><a
href="publications.html" id="X3-" ></a>C.M. Kirsch. “On the Self in Selfie (Invited Talk)”. In: <span
class="ptmri8t-">Proc. ACM SIGPLAN International Workshop on</span>
<span
class="ptmri8t-">Virtual Machines and Intermediate Languages (VMIL)</span>. ACM, 2018. <a
href="https://ckirsch.github.io/publications/invited/VMIL18-Selfie.pdf" >Click here for PDF file</a>.
</dd><dt id="X3-Dagstuhl18" class="thebibliography">
[2] </dt><dd
id="bib-75" class="thebibliography">
<!--l. 101--><p class="noindent" >C.M. Kirsch. “From Logical Execution Time to Principled Systems Engineering”. In: <span
class="ptmri8t-">Dagstuhl Reports</span>
8.2 (2018). Ed. by Rolf Ernst et al., p. 133. <span
class="ptmrc8t-"><span
class="small-caps">I</span><span
class="small-caps">S</span><span
class="small-caps">S</span><span
class="small-caps">N</span></span>: 2192-5283. <span
class="ptmrc8t-"><span
class="small-caps">D</span><span
class="small-caps">O</span><span
class="small-caps">I</span></span>: <a
href="https://doi.org/10.4230/DagRep.8.2.122" >10.4230/DagRep.8.2.122</a>. <span
class="ptmrc8t-"><span
class="small-caps">U</span><span
class="small-caps">R</span><span
class="small-caps">L</span></span>:
<a
href="http://drops.dagstuhl.de/opus/volltexte/2018/9293" class="url" ><span
class="pcrr8t-">http://drops.dagstuhl.de/opus/volltexte/2018/9293</span></a>. <a
href="https://ckirsch.github.io/publications/invited/Dagstuhl18-LET.pdf" >Click here for PDF file</a>.
</dd><dt id="X3-Festschrift18" class="thebibliography">
[3] </dt><dd
id="bib-76" class="thebibliography">
<!--l. 101--><p class="noindent" >A.S. Abyaneh and C.M. Kirsch. “You can program what you want but you cannot compute what you want”.
In: <span
class="ptmri8t-">Edward A. Lee Festschrift</span>. Vol. 10760. LNCS. Springer, 2018. <a
href="https://ckirsch.github.io/publications/invited/Festschrift18-Selfie.pdf" >Click here for PDF file</a>.
</dd><dt id="X3-NETYS15" class="thebibliography">
[4] </dt><dd
id="bib-77" class="thebibliography">
<!--l. 101--><p class="noindent" >A. Haas et al. “Scal: A Benchmarking Suite for Concurrent Data Structures”. In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Conference on Networked Systems (NETYS)</span>. LNCS. Springer, 2015. <a
href="https://ckirsch.github.io/publications/invited/NETYS15-Scal.pdf" >Click here for PDF file</a>.
</dd><dt id="X3-CF13" class="thebibliography">
[5] </dt><dd
id="bib-78" class="thebibliography">
<!--l. 101--><p class="noindent" >A. Haas et al. “Distributed Queues in Shared Memory—Multicore Performance and Scalability through
Quantitative Relaxation”. In: <span
class="ptmri8t-">Proc. International Conference on Computing Frontiers</span>. ACM, 2013. <a
href="https://ckirsch.github.io/publications/invited/CF13-DistributedQueues.pdf" >Click
here for PDF file</a>.
</dd><dt id="X3-EMSOFT05" class="thebibliography">
[6] </dt><dd
id="bib-79" class="thebibliography">
<!--l. 101--><p class="noindent" >D.F. Bacon et al. “High-Level Real-Time Programming in Java”. In: <span
class="ptmri8t-">Proc. International Conference on</span>
<span
class="ptmri8t-">Embedded Software (EMSOFT)</span>. ACM, 2005. <a
href="https://ckirsch.github.io/publications/invited/EMSOFT05-HighLevelRTProgrammingInJava.pdf" >Click here for PDF file</a>.
</dd><dt id="X3-EMSOFT02c" class="thebibliography">
[7] </dt><dd
id="bib-80" class="thebibliography">
<!--l. 101--><p class="noindent" >C.M. Kirsch. “Principles of Real-Time Programming”. In: <span
class="ptmri8t-">Proc. International Workshop on Embedded</span>
<span
class="ptmri8t-">Software (EMSOFT)</span>. Vol. 2491. LNCS. Springer, 2002, pp. 61–75. <a
href="https://ckirsch.github.io/publications/invited/EMSOFT02-PrinciplesRTProgramming.pdf" >Click here for PDF file</a>.</dd></dl>
<!--l. 115--><p class="noindent" ><span class="underline"><span
class="ptmrc8t-x-x-120">P<span
class="small-caps">R</span><span
class="small-caps">O</span><span
class="small-caps">C</span><span
class="small-caps">E</span><span
class="small-caps">E</span><span
class="small-caps">D</span><span
class="small-caps">I</span><span
class="small-caps">N</span><span
class="small-caps">G</span><span
class="small-caps">S</span> <span
class="small-caps">A</span><span
class="small-caps">N</span><span
class="small-caps">D</span> S<span
class="small-caps">P</span><span
class="small-caps">E</span><span
class="small-caps">C</span><span
class="small-caps">I</span><span
class="small-caps">A</span><span
class="small-caps">L</span> I<span
class="small-caps">S</span><span
class="small-caps">S</span><span
class="small-caps">U</span><span
class="small-caps">E</span><span
class="small-caps">S</span></span> </span>
<dl class="thebibliography"><dt id="X4-MPLR24" class="thebibliography">
[1] </dt><dd
id="bib-81" class="thebibliography">
<!--l. 116--><p class="noindent" ><a id="page.8"></a><a
href="publications.html" id="X4-" ></a>M. Anton Ertl and Christoph M. Kirsch, eds. <span
class="ptmri8t-">Proc. ACM SIGPLAN International Conference on Managed</span>
<span
class="ptmri8t-">Programming Languages and Runtimes (MPLR)</span>. Vienna, Austria: ACM, 2024. <span
class="ptmrc8t-"><span
class="small-caps">I</span><span
class="small-caps">S</span><span
class="small-caps">B</span><span
class="small-caps">N</span></span>: 9798400711183.
<a
href="https://ckirsch.github.io/publications/proceedings/MPLR24.pdf" >Click here for PDF file</a>.
</dd><dt id="X4-ISMM17" class="thebibliography">
[2] </dt><dd
id="bib-82" class="thebibliography">
<!--l. 116--><p class="noindent" >Christoph M. Kirsch and Ben L. Titzer, eds. <span
class="ptmri8t-">Proc. ACM SIGPLAN International Symposium on Memory</span>
<span
class="ptmri8t-">Management (ISMM)</span>. Barcelona, Spain: ACM, 2017.
</dd><dt id="X4-TECS13" class="thebibliography">
[3] </dt><dd
id="bib-83" class="thebibliography">
<!--l. 116--><p class="noindent" >“Introduction to Special Section on Probabilistic Embedded Computing”. In: <span
class="ptmri8t-">ACM Trans. Embed.</span>
<span
class="ptmri8t-">Comput. Syst. </span>12.2s (May 2013). Ed. by C.M. Kirsch and V. Mooney, 86:1–86:2. <span
class="ptmrc8t-"><span
class="small-caps">I</span><span
class="small-caps">S</span><span
class="small-caps">S</span><span
class="small-caps">N</span></span>: 1539-9087. <span
class="ptmrc8t-"><span
class="small-caps">D</span><span
class="small-caps">O</span><span
class="small-caps">I</span></span>:
<a
href="https://doi.org/10.1145/2465787.2465788" >10.1145/2465787.2465788</a>. <span
class="ptmrc8t-"><span
class="small-caps">U</span><span
class="small-caps">R</span><span
class="small-caps">L</span></span>: <a
href="http://doi.acm.org/10.1145/2465787.2465788" class="url" ><span
class="pcrr8t-">http://doi.acm.org/10.1145/2465787.2465788</span></a>. <a
href="https://ckirsch.github.io/publications/journals/TECS13-PEC.pdf" >Click
here for PDF file</a>.
</dd><dt id="X4-EuroSys11" class="thebibliography">
[4] </dt><dd
id="bib-84" class="thebibliography">
<!--l. 116--><p class="noindent" >Gernot Heiser and Christoph M. Kirsch, eds. <span
class="ptmri8t-">ACM European Conference on Computer Systems, EuroSys</span>
<span
class="ptmri8t-">2011, Salzburg, Austria, April 10 - 13, 2011, Proceedings</span>. New York, NY, USA: ACM, 2011.
</dd><dt id="X4-LCTES09" class="thebibliography">
[5] </dt><dd
id="bib-85" class="thebibliography">
<!--l. 116--><p class="noindent" >Christoph M. Kirsch and Mahmut T. Kandemir, eds. <span
class="ptmri8t-">ACM SIGPLAN/SIGBED Conference on Languages,</span>
<span
class="ptmri8t-">Compilers, and Tools for Embedded Systems, LCTES 2009, Dublin, Ireland, June 19 - 20, 2009,</span>
<span
class="ptmri8t-">Proceedings</span>. New York, NY, USA: ACM, 2009.
</dd><dt id="X4-EMSOFT07a" class="thebibliography">
[6] </dt><dd
id="bib-86" class="thebibliography">
<!--l. 116--><p class="noindent" >Christoph M. Kirsch and Reinhard Wilhelm, eds. <span
class="ptmri8t-">ACM & IEEE International Conference on Embedded</span>
<span
class="ptmri8t-">Software, EMSOFT 2007, Salzburg, Austria, September 30 - October, 3, 2007, Proceedings</span>. New York, NY,
USA: ACM, 2007.
</dd><dt id="X4-EMSOFT01" class="thebibliography">
[7] </dt><dd
id="bib-87" class="thebibliography">
<!--l. 116--><p class="noindent" >Thomas A. Henzinger and Christoph M. Kirsch, eds. <span
class="ptmri8t-">Embedded Software, First International Workshop,</span>
<span
class="ptmri8t-">EMSOFT 2001, Tahoe City, CA, USA, October, 8-10, 2001, Proceedings</span>. Vol. 2211. LNCS. Springer, 2001.</dd></dl>
<!--l. 126--><p class="noindent" ><span class="underline"><span
class="ptmrc8t-x-x-120">B<span
class="small-caps">O</span><span
class="small-caps">O</span><span
class="small-caps">K</span> C<span
class="small-caps">H</span><span
class="small-caps">A</span><span
class="small-caps">P</span><span
class="small-caps">T</span><span
class="small-caps">E</span><span
class="small-caps">R</span><span
class="small-caps">S</span></span> </span>
<dl class="thebibliography"><dt id="X5-ARTS12" class="thebibliography">
[1] </dt><dd
id="bib-88" class="thebibliography">
<!--l. 127--><p class="noindent" ><a id="page.9"></a><a
href="publications.html" id="X5-" ></a>C.M. Kirsch and A. Sokolova. “The Logical Execution Time Paradigm”. In: <span
class="ptmri8t-">Advances in Real-Time</span>
<span
class="ptmri8t-">Systems</span>. 2012, pp. 103–120.
</dd><dt id="X5-HRTES07" class="thebibliography">
[2] </dt><dd
id="bib-89" class="thebibliography">
<!--l. 127--><p class="noindent" >“Handbook of Real-Time and Embedded Systems”. In: ed. by I. Lee, J. Leung, and S.H. Son. CRC Press,
2007. Chap. The Evolution of Real-Time Programming.
</dd><dt id="X5-SEC03" class="thebibliography">
[3] </dt><dd
id="bib-90" class="thebibliography">
<!--l. 127--><p class="noindent" >“Software-Enabled Control: Information Technology for Dynamical Systems”. In: ed. by T. Samad and G.
Balas. IEEE Press and Wiley-Interscience, 2003. Chap. "Embedded Control Systems Development with
Giotto".</dd></dl>
<!--l. 136--><p class="noindent" ><span class="underline"><span
class="ptmrc8t-x-x-120">S<span
class="small-caps">Y</span><span
class="small-caps">S</span><span
class="small-caps">T</span><span
class="small-caps">E</span><span
class="small-caps">M</span> P<span
class="small-caps">A</span><span
class="small-caps">P</span><span
class="small-caps">E</span><span
class="small-caps">R</span><span
class="small-caps">S</span></span> </span>
<dl class="thebibliography"><dt id="X6-ICSE01" class="thebibliography">
[1] </dt><dd
id="bib-91" class="thebibliography">
<!--l. 137--><p class="noindent" ><a
href="publications.html" id="X6-" ></a>R. Alur et al. “jMocha: A Model Checking Tool that Exploits Design Structure”. In: <span
class="ptmri8t-">Proc. International</span>
<span
class="ptmri8t-">Conference on Software Engineering (ICSE)</span>. 2001. <a
href="https://ckirsch.github.io/publications/systems/ICSE01-jMocha.pdf" >Click here for PDF file</a>.
</dd><dt id="X6-JAR98" class="thebibliography">
[2] </dt><dd
id="bib-92" class="thebibliography">
<!--l. 137--><p class="noindent" >C. Weidenbach et al. “SPASS v0.77”. In: <span
class="ptmri8t-">Journal of Automated Reasoning </span>21.1 (1998).</dd></dl>
<!--l. 149--><p class="noindent" ><span class="underline"><span
class="ptmrc8t-x-x-120">S<span
class="small-caps">H</span><span
class="small-caps">O</span><span
class="small-caps">R</span><span
class="small-caps">T</span> T<span
class="small-caps">A</span><span
class="small-caps">L</span><span
class="small-caps">K</span><span
class="small-caps">S</span> <span
class="small-caps">A</span><span
class="small-caps">N</span><span
class="small-caps">D</span> P<span
class="small-caps">O</span><span
class="small-caps">S</span><span
class="small-caps">T</span><span
class="small-caps">E</span><span
class="small-caps">R</span><span
class="small-caps">S</span></span> </span>
<dl class="thebibliography"><dt id="X7-DMTM14" class="thebibliography">
[1] </dt><dd