SwePub
Sök i SwePub databas

  Utökad sökning

Träfflista för sökning "LAR1:mdh "

Sökning: LAR1:mdh

  • Resultat 8061-8070 av 19463
Sortera/gruppera träfflistan
   
NumreringReferensOmslagsbildHitta
8061.
  • Inam, Rafia, et al. (författare)
  • Hierarchical Scheduling Framework Implementation in FreeRTOS
  • 2011
  • Rapport (övrigt vetenskapligt/konstnärligt)abstract
    • This report presents the implementation of hierarchical scheduling framework HSF on an open source real-time operating system FreeRTOS to support the temporal isolation of a number of real-time components (or applications) onto a single processor. The goal is to achieve predictable integration and reusability of independently developed components or tasks. It presents the initial results of the HSF implementation by running it on an AVR 32-bit board EVK1100. It addresses the fixed-priority preemptive scheduling at both global and local scheduling levels. It describes the detailed design of HSF with the emphasis of doing minimal changes to the underlying FreeRTOS kernel and keeping its API intact. Finally it provides (and compares) the results for the performance measures of periodic and deferrable servers with respect to the overhead of the implementation. Index Terms: real-time systems; hierarchical scheduling framework; fixed-priority scheduling
  •  
8062.
  • Inam, Rafia, 1974-, et al. (författare)
  • Implementing and Evaluating Communication- Strategies in the ProCom Component Technology
  • 2012
  • Ingår i: Acm Sigbed Review. - 1551-3688. ; 9:4, s. 1-4
  • Tidskriftsartikel (refereegranskat)abstract
    • This paper presents two strategies to support communication between real-time executable Runnable Virtual Node (RVN) components in the ProCom component technology. We describe the currently implemented server-based communication strategy which uses a dedicated server for communication. We compare the server-based technique with a direct (RVN-to-RVN) communication strategy. The paper also describes how these strategies could be evaluated for real-time performance, and the real-time analysis technologies needed to perform such an evaluation.
  •  
8063.
  • Inam, Rafia, 1974-, et al. (författare)
  • Implementing Hierarchical Scheduling to support Multi-Mode System
  • 2012
  • Ingår i: 7th IEEE International Symposium on Industrial Embedded Systems (SIES) June 20 – June 22, 2012 Karlsruhe, Germany, Conference Proceedings. - Karlsruhe, Germany. ; , s. 319-322
  • Konferensbidrag (refereegranskat)abstract
    • Multi-mode embedded real-time systems exhibit a specific behavior for each mode and upon a mode-change request, the task-set and timing interfaces of the system need to be changed. Hierarchical Scheduling Framework (HSF) is a known technique to partition the CPU time into a number of hierarchically divided subsystems each consists of its own task set. We propose to implement a multi-mode system using a two-level HSF and provide a skeleton (framework)  for an adaptive HSFs supporting multi-modes. Upon a mode-change request, the timing interface of each subsystem is changed, thus making the hierarchical scheduling adaptive in nature. We address the main goals for the implementation and describe the initial design details of Multi-Mode Adaptive Hierarchical Scheduling Framework (MMAHSF) with the emphasis of doing minimal changes to the underlying kernel.
  •  
8064.
  • Inam, Rafia, et al. (författare)
  • Mode-Change Mechanisms support for Hierarchical FreeRTOS Implementation
  • 2013
  • Konferensbidrag (refereegranskat)abstract
    • Multi-mode embedded real-time systems exhibit a specific behaviour for each mode, and upon a mode-change request the task-set and timing interfaces of the system need to be changed. This paper presents the implementation of a Multi- Mode Adaptive Hierarchical Scheduling Framework (MMAHSF) and provides a generic skeleton (framework) for a two-level adaptive hierarchical scheduling supporting multiple modes and multiple mode-change mechanisms on an open source real-time operating system (FreeRTOS). The MMAHSF enable applicationspecific implementations of mode-change protocols using a set of predefined mode-change mechanisms. The paper addresses different mode-change mechanisms at both global and local scheduling levels. It presents examples of mode-change protocols that are developed by composing together these mechanisms in multiple ways and provide the initial results of executing these protocols in the MMAHSF implementation on an AVR 32-bit board EVK1100.
  •  
8065.
  • Inam, Rafia (författare)
  • Performance Preservation using Servers for Predictable Execution and Integration
  • 2014
  • Ingår i: The 38th Annual International Computers, Software & Applications Conference COMPSAC 2014. - 9781479935741 ; , s. 614-617
  • Konferensbidrag (refereegranskat)abstract
    • In real-time embedded systems the components and components integration must satisfy both functional correctness and extra-functional correctness, such as satisfying timing properties. Deploying multiple real-time components on a physical node poses timing problems in components’s integration. These timing problems during integration further effect predictability and reusability of real-time components. We propose a novel concept of runnable virtual node (RVN) whose interaction with the environment is bounded both by a functional and a temporal interface, and the validity of its internal temporal behaviour is preserved when integrated with other components or when reused in a new environment. Our realization of RVN exploits the latest techniques for hierarchical scheduling framework to achieve temporal isolation, and the principles from component-based software-engineering to achieve functional isolation. Proof-of-concept case studies executed on an AVR based 32- bit micro-controller demonstrates the preserving of real-time properties within components for predictable integration and reusability in a new environment without altering its temporal behaviour in both hierarchical scheduling and RVN contexts. We also take a step ahead towards expanding the performance preserving servers’ concept for multicore platform on which the scheduling of real-time tasks is inherently unpredictable due to the contention for shared physical memory and caches. It results in proposing and implementation of a novel type of server, called Multi-Resource Server (MRS) which controls the access to both CPU and memory bandwidth resources such that the execution of real-time tasks become predictable. The MRS provides temporal isolation both between tasks running on the same core, as well as, between tasks running on different cores. Further, we provide the schedulability analysis for MRS to provide predictable performance when composing multiple components on a shared multi-core platform.
  •  
8066.
  • Inam, Rafia, et al. (författare)
  • Predictable integration and reuse of executable real-time components
  • 2014
  • Ingår i: Journal of Systems and Software. - : Elsevier BV. - 0164-1212 .- 1873-1228. ; 91, s. 147-162
  • Tidskriftsartikel (refereegranskat)abstract
    • We present the concept of runnable virtual node (RVN) as a means to achieve predictable integration and reuse of executable real-time components in embedded systems. A runnable virtual node is a coarse-grained software component that provides functional and temporal isolation with respect to its environment. Its interaction with the environment is bounded both by a functional and a temporal interface, and the validity of its internal temporal behaviour is preserved when integrated with other components or when reused in a new environment. Our realization of RVN exploits the latest techniques for hierarchical scheduling to achieve temporal isolation, and the principles from component-based software-engineering to achieve functional isolation. It uses a two-level deployment process, i.e. deploying functional entities to RVNs and then deploying RVNs to physical nodes, and thus also gives development benefits with respect to composability, system integration, testing, and validation. In addition, we have implemented a server-based inter-RVN communication strategy to not only support the predictable integration and reuse properties of RVNs by keeping the communication code in a separate server, but also increasing the maintainability and flexibility to change the communication code without affecting the timing properties of RVNs. We have applied our approach to a case study, implemented in the ProCom component technology executing on top of a FreeRTOS-based hierarchical scheduling framework and present the results as a proof-of-concept.
  •  
8067.
  • Inam, Rafia, 1974-, et al. (författare)
  • Real-Time Component Integration using Runnable Virtual Nodes
  • 2012
  • Ingår i: Proceedings - 38th EUROMICRO Conference on Software Engineering and Advanced Applications, SEAA 2012. - 9780769547909 ; , s. 80-84
  • Konferensbidrag (refereegranskat)abstract
    • We present the concept of runnable virtual nodes (RVNs) as means to achieve predictable integration and temporal error-containment of real-time software components. An RVN exploits the latest techniques for hierarchical scheduling and is intended as a coarse-grained component for single-node deployment, that provides functional and temporal isolations with respect to its environment. It uses a two-level deployment process; i.e. deploying functional entities to RVNs and then deploying RVNs to physical nodes. The two-level deployment process not only gives development benefits with respect to composability, system integration, testing, validation and certification but also leverages the hierarchical scheduling to preserve the validity of an RVN's internal temporal behaviour when integrated with other components. We have applied our approach to a simple case study, implemented in the ProCom component-technology executing on top of FreeRTOS-based hierarchical scheduling and present our initial results as a proof-of-concept.
  •  
8068.
  • Inam, Rafia, 1974-, et al. (författare)
  • Run-Time Component Integration and Reuse in Cyber-Physical Systems
  • 2011
  • Rapport (övrigt vetenskapligt/konstnärligt)abstract
    • We present the concept of runnable virtual nodes as a means to achieve predictable integration and reuse of software components in cyber-physical systems. A runnable virtual nodeis a coarse-grained real-time component that provides functional and temporal isolation with respect to its environment.Its interaction with the environment is bounded both by a functional and a temporal interface, and the validity of itsinternal temporal behavior is preserved when integrated with other components or when reused in a new environment.Our realization of runnable virtual nodes exploits the latest techniques for hierarchical scheduling to achieve temporalisolation, and the principles from component-based software-engineering to achieve functional isolation. In the paperwe present a proof-of-concept case study, implemented in the ProCom component-technology executing on top of FreeRTOSbased hierarchical scheduling framework.
  •  
8069.
  • Inam, Rafia, 1974-, et al. (författare)
  • Support for Hierarchical Scheduling in FreeRTOS
  • 2011
  • Ingår i: 2011 IEEE 16TH CONFERENCE ON EMERGING TECHNOLOGIES AND FACTORY AUTOMATION (ETFA). - : IEEE conference proceedings. - 9781457700187 ; , s. 1-10
  • Konferensbidrag (refereegranskat)abstract
    • This paper presents the implementation of a HierarchicalScheduling Framework (HSF) on an open sourcereal-time operating system (FreeRTOS) to support the temporalisolation between a number of applications, on a single processor.The goal is to achieve predictable integration and reusability ofindependently developed components or applications. We presentthe initial results of the HSF implementation by running it onan AVR 32-bit board EVK1100.The paper addresses the fixed-priority preemptive schedulingat both global and local scheduling levels. It describes the detaileddesign of HSF with the emphasis of doing minimal changes tothe underlying FreeRTOS kernel and keeping its API intact.Finally it provides (and compares) the results for the performancemeasures of idling and deferrable servers with respect to theoverhead of the implementation.
  •  
8070.
  • Inam, Rafia, 1974-, et al. (författare)
  • Support for Legacy Real-Time Applications in an HSF-Enabled FreeRTOS - a technical report
  • 2014
  • Rapport (refereegranskat)abstract
    • This paper presents a runtime support to consolidate legacy together with other real-time applications, running a single instance of a real-time operating system (RTOS), and sharing system resources. In this context, we resort to the hierarchical scheduling framework (HSF) to provide tem- poral partitions for dierent applications, supporting their independent development and real-time analysis, thus resulting on a predictable inte- gration. In particular, the paper focuses on a constructive element, the legacy server that allows executing code that is unaware of the temporal partition within which it is deployed. Furthermore, we discuss the chal- lenges that need to be addressed to execute a legacy application in an HSF without modications to the original code. We focus on the chal- lenge of enabling sharing system resources, both hardware and software, as typically found in most industrial software systems. We propose a novel solution based on wrappers for the required RTOS system calls. We implement our ideas in a concrete implementation on FreeRTOS OS, taking advantage of a prior HSF implementation. The validation is performed by a proof-of-concept case study that shows a successful integration of a legacy application that uses shared resources in a system that executes other applications. 
  •  
Skapa referenser, mejla, bekava och länka
  • Resultat 8061-8070 av 19463
Typ av publikation
tidskriftsartikel (7860)
konferensbidrag (6597)
bokkapitel (1906)
rapport (841)
doktorsavhandling (592)
annan publikation (426)
visa fler...
licentiatavhandling (392)
bok (305)
samlingsverk (redaktörskap) (168)
recension (149)
forskningsöversikt (142)
proceedings (redaktörskap) (64)
konstnärligt arbete (18)
patent (12)
visa färre...
Typ av innehåll
refereegranskat (13910)
övrigt vetenskapligt/konstnärligt (4832)
populärvet., debatt m.m. (714)
Författare/redaktör
Nolte, Thomas (343)
Yan, Jinyue, 1959- (278)
Yan, Jinyue (263)
Li, Hailong, 1976- (248)
Dahlquist, Erik (192)
Mubeen, Saad (188)
visa fler...
Kyprianidis, Konstan ... (182)
Björkman, Mats (178)
Punnekkat, Sasikumar (167)
Sjödin, Mikael (156)
Gallina, Barbara (155)
Behnam, Moris (154)
Silvestrov, Sergei, ... (152)
Silvestrov, Sergei, ... (138)
Crnkovic, Ivica (137)
Carlson, Jan (135)
Flammini, Francesco, ... (134)
Sandberg, Anette (134)
Cicchetti, Antonio (133)
Lundqvist, Kristina (129)
von Thiele Schwarz, ... (126)
Lindén, Maria (124)
Afzal, Wasif (124)
Nilsson, Kent W. (123)
Wiklund Gustin, Lena ... (118)
Hansson, Hans (117)
Söderlund, Anne (115)
Söderbaum, Peter, 19 ... (115)
Malyarenko, Anatoliy ... (112)
Thorin, Eva, 1967- (108)
Xiong, Ning (107)
Daneshtalab, Masoud (104)
Biesta, Gert (103)
Dahlquist, Erik, 195 ... (102)
Lisper, Björn (101)
Stier, Jonas, 1967- (101)
Bruch, Jessica (98)
Ärlemalm-Hagsér, Eva ... (98)
Axelsson, Jakob (95)
Sundmark, Daniel (94)
Åkerberg, Johan (93)
Funk, Peter (93)
Campana, Pietro Elia ... (91)
Ekström, Mikael (91)
Jackson, Mats (91)
Bate, Iain (90)
Pettersson, Paul (88)
Bälter, Katarina (88)
Papadopoulos, Alessa ... (87)
CERNERUD, LARS (87)
visa färre...
Lärosäte
Mälardalens universitet (19463)
Uppsala universitet (1394)
Karolinska Institutet (873)
Kungliga Tekniska Högskolan (839)
Örebro universitet (580)
Högskolan Dalarna (550)
visa fler...
Stockholms universitet (539)
Linnéuniversitetet (499)
RISE (458)
Linköpings universitet (381)
Jönköping University (367)
Göteborgs universitet (271)
Chalmers tekniska högskola (247)
Umeå universitet (240)
Lunds universitet (233)
Karlstads universitet (223)
Södertörns högskola (192)
Luleå tekniska universitet (190)
Högskolan i Gävle (184)
Marie Cederschiöld högskola (159)
Mittuniversitetet (132)
Röda Korsets Högskola (116)
Blekinge Tekniska Högskola (110)
Högskolan i Halmstad (95)
Högskolan i Borås (93)
Högskolan i Skövde (83)
Handelshögskolan i Stockholm (66)
Sophiahemmet Högskola (55)
Malmö universitet (53)
Sveriges Lantbruksuniversitet (44)
Högskolan Väst (28)
Högskolan Kristianstad (15)
Gymnastik- och idrottshögskolan (12)
VTI - Statens väg- och transportforskningsinstitut (9)
Konstfack (5)
Institutet för språk och folkminnen (4)
IVL Svenska Miljöinstitutet (3)
Riksantikvarieämbetet (1)
Försvarshögskolan (1)
visa färre...
Språk
Engelska (16787)
Svenska (2439)
Franska (52)
Tyska (34)
Spanska (34)
Italienska (33)
visa fler...
Norska (28)
Finska (18)
Kinesiska (9)
Ryska (4)
Polska (4)
Kurdiska (4)
Danska (3)
Nederländska (3)
Portugisiska (3)
Japanska (3)
Turkiska (2)
Koreanska (2)
Arabiska (1)
visa färre...
Forskningsämne (UKÄ/SCB)
Teknik (5626)
Samhällsvetenskap (5298)
Naturvetenskap (3108)
Medicin och hälsovetenskap (2931)
Humaniora (756)
Lantbruksvetenskap (56)

År

Kungliga biblioteket hanterar dina personuppgifter i enlighet med EU:s dataskyddsförordning (2018), GDPR. Läs mer om hur det funkar här.
Så här hanterar KB dina uppgifter vid användning av denna tjänst.

 
pil uppåt Stäng

Kopiera och spara länken för att återkomma till aktuell vy