This file contains hidden or 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
| Resources: { | |
| atomic_t done = 0; | |
| struct task *wtask; | |
| } | |
| Lets first have a look at the code that is executed on each CPU without | |
| specifying any timings: | |
| -----------------------------------+----------------------------------- | |
| CPU 1 | CPU 2 |
This file contains hidden or 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
| /* | |
| * uterm-input Input Method API Proposal | |
| * This API extends the uterm library to handle input methods. An input method | |
| * shall implement this API to be easily integrated into libuterm and all | |
| * programs that depend on it. | |
| * Note that this depends on the uterm-input and uterm-video parts. The | |
| * important pieces are appended to the end of the file so you don't have to | |
| * look it up. | |
| * | |
| * An IM backend shall provide a static constant "uterm_im_ops" object. kmscon |
This file contains hidden or 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
| /* | |
| * modeset - DRM Modesetting Example | |
| * | |
| * Written 2012-2013 by David Herrmann <dh.herrmann@googlemail.com> | |
| * Dedicated to the Public Domain. | |
| */ | |
| /* | |
| * Modesetting Example | |
| * This example is based on: |
This file contains hidden or 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 <errno.h> | |
| #include <fcntl.h> | |
| #include <limits.h> | |
| #include <linux/input.h> | |
| #include <linux/uinput.h> | |
| #include <stdarg.h> | |
| #include <stdbool.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> |
This file contains hidden or 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
| /* | |
| * libinputmapper - Input Mapper Library | |
| * | |
| * Copyright (c) 2012-2013 David Herrmann <dh.herrmann@gmail.com> | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining | |
| * a copy of this software and associated documentation files | |
| * (the "Software"), to deal in the Software without restriction, including | |
| * without limitation the rights to use, copy, modify, merge, publish, | |
| * distribute, sublicense, and/or sell copies of the Software, and to |
This file contains hidden or 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
| [ 19.213] | |
| X.Org X Server 1.14.2 | |
| Release Date: 2013-06-25 | |
| [ 19.213] X Protocol Version 11, Revision 0 | |
| [ 19.213] Build Operating System: Linux 3.9.7-1-ARCH x86_64 | |
| [ 19.213] Current Operating System: Linux david-mb 3.10.4 #1 SMP PREEMPT Thu Aug 1 16:12:03 CEST 2013 x86_64 | |
| [ 19.213] Kernel command line: root=/dev/sda4 init=/lib/systemd/systemd | |
| [ 19.213] Build Date: 01 July 2013 10:48:42AM | |
| [ 19.213] | |
| [ 19.213] Current version of pixman: 0.30.0 |
This file contains hidden or 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
| diff --git a/drivers/gpu/drm/drm_sysfs.c b/drivers/gpu/drm/drm_sysfs.c | |
| index 1a35ea5..cb951b2 100644 | |
| --- a/drivers/gpu/drm/drm_sysfs.c | |
| +++ b/drivers/gpu/drm/drm_sysfs.c | |
| @@ -489,6 +489,11 @@ void drm_sysfs_hotplug_event(struct drm_device *dev) | |
| } | |
| EXPORT_SYMBOL(drm_sysfs_hotplug_event); | |
| +static void drm_sysfs_release(struct device *dev) | |
| +{ |
This file contains hidden or 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
| Aufgabe 1) | |
| Gegeben: | |
| S = {{p,r},{q,!t},{q,!r,s},{!r,t},{p,!q,!s},{p,q,t},{p,!q,!r,!t}} | |
| a) | |
| Gelte: | |
| p < q < r < s < t | |
| Unsere Klauseln umsortier: | |
| { |
This file contains hidden or 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
| Aufgabe 1) | |
| Gegeben: | |
| S = {{p,r},{q,!t},{q,!r,s},{!r,t},{p,!q,!s},{p,q,t},{p,!q,!r,!t}} | |
| a) | |
| Gelte: | |
| p < q < r < s < t | |
| Unsere Klauseln umsortier: | |
| { |
This file contains hidden or 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
| #! /bin/sh | |
| # Guess values for system-dependent variables and create Makefiles. | |
| # Generated by GNU Autoconf 2.69 for libevdev 0.5. | |
| # | |
| # Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=libevdev>. | |
| # | |
| # | |
| # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. | |
| # | |
| # |