scispace - formally typeset
Proceedings ArticleDOI

Eraser: a dynamic data race detector for multi-threaded programs

Reads0
Chats0
TLDR
Eraser as mentioned in this paper uses binary rewriting techniques to monitor every shared memory reference and verify that consistent locking behavior is observed in lock-based multi-threaded programs, which can be used to detect data races.
Abstract
Multi-threaded programming is difficult and error prone. It is easy to make a mistake in synchronization that produces a data race, yet it can be extremely hard to locate this mistake during debugging. This paper describes a new tool, called Eraser, for dynamically detecting data races in lock-based multi-threaded programs. Eraser uses binary rewriting techniques to monitor every shared memory reference and verify that consistent locking behavior is observed. We present several case studies, including undergraduate coursework and a multi-threaded Web search engine, that demonstrate the effectiveness of this approach.

read more

Citations
More filters
Journal Article

TraceDo : An on-chip trace system for real-time debug and optimization in multiprocessor SoC

TL;DR: TraceDo as discussed by the authors is an on-chip trace system for debugging and optimization of real-time programs in multiprocessor SoCs using LS encoder, branch configuration bits and configuration instructions.
Journal ArticleDOI

PVcon: Localizing Hidden Concurrency Errors With Prediction and Verification

TL;DR: An enhanced dynamic concurrency error detection technique, called PVcon, which can detect more concurrency errors than existing techniques and is implemented in C/C++ and evaluated by localizing concurrence errors from real-world programs.
Proceedings ArticleDOI

RunAssert: a non-intrusive run-time assertion for parallel programs debugging

TL;DR: This work developed a non-intrusive run-time assertion (RunAssert) for parallel program development based on a novel non-uniform debugging architecture that can be executed at its original speed without altering the parallel sequences, thereby eliminating the possibility of probe effect.
Dissertation

Lightweight verification of functional programs

TL;DR: The goal is to allow programmers to do more with QuickCheck properties than just test them, and to develop the theory behind sound type encodings, and have written tools that implement the ideas.
Journal ArticleDOI

Software Analysis Techniques for Detecting Data Race

TL;DR: This paper surveys data race detection techniques in static and dynamic approaches, which derive program information before runtime from source code, while dynamic techniques examine the behavior at runtime.
References
More filters
Book ChapterDOI

Time, clocks, and the ordering of events in a distributed system

TL;DR: In this paper, the concept of one event happening before another in a distributed system is examined, and a distributed algorithm is given for synchronizing a system of logical clocks which can be used to totally order the events.
Journal ArticleDOI

Time, clocks, and the ordering of events in a distributed system

TL;DR: In this article, the concept of one event happening before another in a distributed system is examined, and a distributed algorithm is given for synchronizing a system of logical clocks which can be used to totally order the events.
Journal ArticleDOI

Monitors: an operating system structuring concept

TL;DR: In this paper, the authors develop Brinch-Hansen's concept of a monitor as a method of structuring an operating system and describe a possible method of implementation in terms of semaphores and give a suitable proof rule.
Proceedings ArticleDOI

Extensibility safety and performance in the SPIN operating system

TL;DR: This paper describes the motivation, architecture and performance of SPIN, an extensible operating system that provides an extension infrastructure together with a core set of extensible services that allow applications to safely change the operating system's interface and implementation.
Proceedings ArticleDOI

ATOM: a system for building customized program analysis tools

TL;DR: ATOM as mentioned in this paper is a single framework for building a wide range of customized program analysis tools, including block counting, profiling, dynamic memory recording, instruction and data cache simulation, pipeline simulation, evaluating branch prediction, and instruction scheduling.