Displaying 6 results from an estimated 6 matches for "kernel_".
Did you mean:
kernel
2011 May 31
5
Is it possible to port (part of) WINE to iOS?
Since Apple's Mac X and iOS share the same kernel -- Darwin. And WINE has port for Mac X.
Is it possible to port (part of) WINE to iOS? For example, "winbase.h", etc.
2011 Jan 02
3
Bug#608715: Recent hardware components render the xen-hyervisor unusable, fails completeley to boot due to kernel panic
Package: xen-hypervisor-4.0-amd64
Version: 4.0.1-1
Severity: grave
Tags: squeeze upstream
Some newer hardware components (it is unclear what exactly causes the issue) render xen-hyervisor unusable as it
crashes immediately after boot for the Debian out-of-box configuration. This results in a system rebooting all over
again if the hypervisor is choosen as default stanza to be booted by grub
2017 Jun 22
2
Legal names for Functions and other Identifiers
Thank You Chen !
On Thu, Jun 22, 2017 at 5:21 PM 陳韋任 <chenwj.cs97g at g2.nctu.edu.tw> wrote:
> Perhaps you can refer to [1]. Function name should be a global one.
>
> [1] http://llvm.org/docs/LangRef.html#identifiers
>
> HTH,
> chenwj
>
>
> 2017-06-22 16:35 GMT+08:00 SANJAY SRIVALLABH SINGAPURAM via llvm-dev <
> llvm-dev at lists.llvm.org>:
>
>>
2017 Jun 22
2
Legal names for Functions and other Identifiers
...pp#L1422>
achieves the above mentioned prefixing,
@@ -1419,7 +1438,9 @@ void GPUNodeBuilder::createKernel(__isl_take
isl_ast_node *KernelStmt) {
Builder.SetInsertPoint(&HostInsertPoint);
Value *Parameters = createLaunchParameters(Kernel, F, SubtreeValues);
- std::string Name = "kernel_" + std::to_string(Kernel->id);
+ std::string Name = S.getFunction().getName().str() + "_" +
+ S.getOrigName() + "_kernel_" +
+ std::to_string(Kernel->id);
(Where getOrigName returns the name of the Scop before the IRBuilder
mo...
2009 Feb 04
26
ZFS snapshot splitting & joining
Hello everyone,
I am trying to take ZFS snapshots (ie. zfs send) and burn them to DVD''s for offsite storage. In many cases, the snapshots greatly exceed the 8GB I can stuff onto a single DVD-DL.
In order to make this work, I have used the "split" utility to break the images into smaller, fixed-size chunks that will fit onto a DVD. For example:
#split -b8100m
2012 Oct 15
1
[QEMU PATCH v4] create struct for machine initialization arguments
...function;
- More easily make mechanical changes involving the machine init
functions in the future;
- Let machine initialization forward the init arguments to other
functions more easily.
This change was half-mechanical process: first the struct was added with
the local ram_size, boot_device, kernel_*, initrd_*, and cpu_model local
variable initialization to all functions. Then the compiler helped me
locate the local variables that are unused, so they could be removed.
---
Changes v3 -> v4:
- Rebase against latest qemu.git master, solved conflicts at
hw/xilinx_zynq.c
Changes v2 ->...