search for: visbility

Displaying 9 results from an estimated 9 matches for "visbility".

Did you mean: visibility
2014 Oct 17
1
KVM does not start anymore
Hi, I had a C7 virtual machine running on a C7 host for several weeks without any problems. Today I rebootet the host and now the virtual machine does not start anymore. I can see grub coming up and starting the kernel. After some seconds the last thing that is visble on the VM console is "ss perfctr msr (MSR c1 is0)" then the screen goes blank with just a blinking cursor in the upper
2016 May 27
3
[RFC] Thoughts on a bitcode symbol table
.... The desired properties are * Include the *final* name of symbols (_foo, not foo). * Not be compressed so that be can keep StringRefs to the names. * Be easy to parse without a LLVMContext. * Include names created by inline assembly. * Include other information a linker or nm would want: linkage, visbility, comdat The first question is: where should we store it? Some options I thought about: * Use the existing support for putting bitcode in a section of a native file and use the file's symbol table. * Use a custom wrapper over the .bc * Encode it with records/blocks in the .bc The first option...
2007 Dec 05
1
Does anyone know why sometimes a PDC appears in the Network neigborhood, and sometimes it doesn't?
The subject says it all, I think. At home I have a PDC (Linux with Samba), and I have Win98 and Win 95(!) clients. And sometimes the domain name (workgroup name) is visble in the Network neigborhood, and sometimes it is not. I also got the impression that placing a link in the file NETHOOD makes a difference, but I am not sure yet. The PDC is visible, that is, it can be PINGed, I can connect
2016 May 31
0
[RFC] Thoughts on a bitcode symbol table
...> * Include the *final* name of symbols (_foo, not foo). > * Not be compressed so that be can keep StringRefs to the names. > * Be easy to parse without a LLVMContext. > * Include names created by inline assembly. > * Include other information a linker or nm would want: linkage, > visbility, comdat > > The first question is: where should we store it? Some options I thought > about: > > * Use the existing support for putting bitcode in a section of a > native file and use the file's symbol table. > * Use a custom wrapper over the .bc > * Encode it with recor...
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...(* name, not including "guestfs_" *) @@ -358,7 +363,7 @@ type action = { fish_alias : string list; (* alias(es) for this cmd in guestfish *) fish_output : fish_output_t option; (* how to display output in guestfish *) visibility: visibility; (* The visbility of function *) - deprecated_by : string option; (* function is deprecated, use .. instead *) + deprecated_by : deprecated_by; (* function is deprecated *) optional : string option; (* function is part of an optional group *) progress : bool; (* function can generate p...
2017 Sep 20
8
[PATCH v2 0/6] Fix OCaml dependencies.
v1 -> v2: - Fixed everything mentioned in patch review. - Libdir module is removed as a separate commit. Rich.
2013 Feb 04
1
[PATCH] generator: Add visibility to action struct
...- in_fish : bool; (* export via guestfish *) - in_docs : bool; (* add this function to documentation *) - internal: bool; (* function is not part of the - external api *) + visibility: visibility; (* The visbility of function *) deprecated_by : string option; (* function is deprecated, use .. instead *) optional : string option; (* function is part of an optional group *) progress : bool; (* function can generate progress messages *) -- 1.8.1
2017 Sep 18
0
[PATCH 2/5] Make sure every *.ml file has a corresponding *.mli file.
...(* Lots of flags ... *) - protocol_limit_warning : bool; (* warn about protocol size limits *) - fish_alias : string list; (* alias(es) for this cmd in guestfish *) - fish_output : fish_output_t option; (* how to display output in guestfish *) - visibility: visibility; (* The visbility of function *) + protocol_limit_warning : bool; + fish_alias : string list; + fish_output : fish_output_t option; + visibility: visibility; deprecated_by : deprecated_by; (* function is deprecated *) optional : string option; (* function is part of an optional group *) progress...
2017 Sep 18
6
[PATCH 0/5] Fix OCaml dependencies.
This works reliably for me ... Rich.