diff options
author | Rik Faith <faith@alephnull.com> | 2000-08-26 10:36:44 +0000 |
---|---|---|
committer | Rik Faith <faith@alephnull.com> | 2000-08-26 10:36:44 +0000 |
commit | 6f07e1ff6bec8f306e8aa1d59b8bcaa93ffa776e (patch) | |
tree | 334961bb4f9cc7c83b95a17d6d79f3bf351bbacf /linux-core/mga_drv.c | |
parent | 37643234affb329775d3330eed650dee59d39bad (diff) |
Sync with Linux 2.4.0-test7 Add signal blocking support to all driversm3-0-0-1-branch
(using control-z on a running direct-rendering client should work now)
Diffstat (limited to 'linux-core/mga_drv.c')
-rw-r--r-- | linux-core/mga_drv.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-core/mga_drv.c b/linux-core/mga_drv.c index acc42b83..a4a8fe55 100644 --- a/linux-core/mga_drv.c +++ b/linux-core/mga_drv.c @@ -655,5 +655,8 @@ int mga_unlock(struct inode *inode, struct file *filp, unsigned int cmd, DRM_ERROR("\n"); } +#if LINUX_VERSION_CODE >= 0x020400 /* KERNEL_VERSION(2,4,0) */ + unblock_all_signals(); +#endif return 0; } |