Sponsored Content
Operating Systems Linux Ubuntu Wine cause more cpu usage and freeze program for a couple of seconds Post 303032376 by wisecracker on Friday 15th of March 2019 05:13:06 PM
Old 03-15-2019
Hi tomislav9...

I think Corona688 is asking for the app name that you are using under Wine.

(As English is not your native language...)

What is the application that you are using?
What is the Wine version that you are using?
 

10 More Discussions You Might Find Interesting

1. Programming

Monitor CPU usage and Memory Usage

how can i monitor usages of CPU, Memory, Hard disk etc. under SUN Solaries through a c program or java program i want to store that data into database so i can show it graphically thanks in advance (2 Replies)
Discussion started by: Gajanad Bihani
2 Replies

2. Programming

CPU usage and memory usage

Please tell me solaris functions/api for getting following information 1- Function that tells how much memory used by current process 2- Function that tells how much memory used by all running processes 3- Function that tells how much CPU is used by current process 4- Function that tells how... (1 Reply)
Discussion started by: mansoorulhaq
1 Replies

3. UNIX for Advanced & Expert Users

Cpu Usage

System FreeBSD. Issue: I see that system idle = 0% in the same time top and other commands show that all process eat 0% of cpu. System calls 98% CPU states: 7.9% user, 0.0% nice, 91.8% system,<==!!! But top does not show any process which eats more than 0% Question: how can I see... (0 Replies)
Discussion started by: mirusnet
0 Replies

4. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

5. Solaris

current CPU usage, memory usage, disk I/O oid(snmp)

Hi, I want to monitor the current cpu usage, monitor usage , disk I/o and network utlization for solaris using SNMP. I want the oids for above tasks. can you please tell me that Thank you (2 Replies)
Discussion started by: S_venkatesh
2 Replies

6. Solaris

Multi CPU Solaris system shows 100% CPU usage.

Hello Friends, On one of my Solaris 10 box, CPU usage shows 100% using "sar", "vmstat". However, it has 4 CPUs and prstat and glance are not showing enough processes to justify high CPU utilization. ========================================================================= $ prstat -a ... (4 Replies)
Discussion started by: mahive
4 Replies

7. AIX

How to monitor the IBM AIX server for I/O usage,memory usage,CPU usage,network..?

How to monitor the IBM AIX server for I/O usage, memory usage, CPU usage, network usage, storage usage? (3 Replies)
Discussion started by: laknar
3 Replies

8. UNIX for Dummies Questions & Answers

CPU usage

well i want to get the cpu usage of the current processes.the thing is that i want to list the processes with cpu usage=0 and the others(one list for cpu usage=0 and another for cpu usage>0)..i can list them,but i cant find a way to find the ps with cpu usage=0 and cpu usage>0..pls help me with... (6 Replies)
Discussion started by: strawhatluffy
6 Replies

9. AIX

Overall CPU Usage

Hi Guys, I am a newbie on the forum. This is my first post, so first of all I would like to introduce myself. I am a SAS Analyst programmer working for an Health Insurance client. SAS is installed on a 16 CPU AIX Server with partitions running with shared processor. I have couple of... (2 Replies)
Discussion started by: saurabhiim2003
2 Replies

10. Shell Programming and Scripting

Restart debian server if one specific process has more than 10 seconds have high cpu load

Hi, could someone give me an example for a debian server script? I need to check a process if the process has a high cpu load (top). If yes the whole server needs to reboot. Thats it, nothing more. ;) Hope someone could help me. Regards woisch (2 Replies)
Discussion started by: woisch
2 Replies
WRC(1)							      Wine Developers Manual							    WRC(1)

NAME
wrc - Wine Resource Compiler SYNOPSIS
wrc [options] [inputfiles] DESCRIPTION
wrc compiles resources from inputfile into win16 and win32 compatible binary format. The source-file is preprocessed with a builtin ANSI-C compatible preprocessor before the resources are compiled. See PREPROCESSOR below. wrc takes a series of inputfile as argument. The resources are read from standard input if no inputfile is given. If the output file is not specified with -o, then wrc will write the output to inputfile.res with .rc stripped, or to wrc.tab.res if no inputfile was given. OPTIONS
--debug=nn Set debug level to nn. The value is a bitmask consisting of 1=verbose, 2=dump internals, 4=resource parser trace, 8=preprocessor messages, 16=preprocessor scanner and 32=preprocessor parser trace. --endianess=e Win32 only; set output byte-ordering, where e is one of n[ative], l[ittle] or b[ig]. Only resources in source-form can be reorderd. Native ordering depends on the system on which wrc was built. You can see the native ordering by typing wrc -h. -D, --define=id[=val] Define preprocessor identifier id to (optionally) value val. See also PREPROCESSOR below. -E Preprocess only. The output is written to standard output if no outputfile was selected. The output is compatible with what gcc would generate. -F, --target Ignored for compatibility with windres. -h, --help Prints a summary message and exits. -i, --input=file The name of the input file. If this option is not used, then wrc will use the first non-option argument as the input file name. If there are no non-option arguments, then wrc will read from standard input. -I, --include-dir=file Add path to include search directories. Path may contain multiple directories, separated with ':'. It is allowed to specify -I mul- tiple times. Include files are searched in the order in with the -I options were specified. The search is compatible with gcc, in which '<>' quoted filenames are searched exclusively via the -I set path, whereas the '""' quoted filenames are first tried to be opened in the current directory. Also resource statements with file references are located in the same way. -J, --input-format=format Sets the input format. Valid options are 'rc' or 'rc16'. Setting the input to 'rc16' disables the recognition of win32 keywords. -l, --language=lan Set default language to lan. Default is the neutral language 0 (i.e. "LANGUAGE 0, 0"). --nostdinc Do not search the standard include path, look for include files only in the directories explicitly specified with the -I option. --no-use-temp-file Ignored for compatibility with windres. -o, -fo, --output=file Write output to file. Default is inputfile.res with .rc stripped or wrc.tab.res if input is read from standard input. -O, --output-format=format Sets the output format. The supported formats are 'res' and 'res16'. If this option is not specified, format defaults to 'res'. --pedantic Enable pedantic warnings. Notably redefinition of #define statements can be discovered with this option. -r Ignored for compatibility with rc. --preprocessor=program This option may be used to specify the preprocessor to use, including any leading arguments. If not specified, wrc uses its builtin processor. To disable preprocessing, use --preprocessor=cat. -U, --undefine=id Undefine preprocessor identifier id. Please note that only macros defined up to this point are undefined by this command. However, these include the special macros defined automatically by wrc. See also PREPROCESSOR below. --use-temp-file Ignored for compatibility with windres. -v, --verbose Turns on verbose mode (equivalent to -d 1). --version Print version end exit. PREPROCESSOR
The preprocessor is ANSI-C compatible with some of the extensions of the gcc preprocessor. The preprocessor recognizes these directives: #include, #define (both simple and macro), #undef, #if, #ifdef, #ifndef, #elif, #else, #endif, #error, #warning, #line, # (both null- and line-directive), #pragma (ignored), #ident (ignored). The preprocessor sets by default several defines: RC_INVOKED set to 1 __WRC__ Major version of wrc __WRC_MINOR__ Minor version of wrc __WRC_PATCHLEVEL__ Patch level Win32 compilation mode also sets __WIN32__ to 1 and __FLAT__ to 1. Special macros __FILE__, __LINE__, __TIME__ and __DATE__ are also recognized and expand to their respective equivalent. LANGUAGE SUPPORT
Language, version and characteristics can be bound to all resource types that have inline data, such as RCDATA. This is an extension to Mi- crosoft's resource compiler, which lacks this support completely. Only VERSIONINFO cannot have version and characteristics attached, but languages are propagated properly if you declare it correctly before the VERSIONINFO resource starts. Example: 1 RCDATA DISCARDABLE LANGUAGE 1, 0 VERSION 312 CHARACTERISTICS 876 { 1, 2, 3, 4, 5, "and whatever more data you want" '00 01 02 03 04 05 06 07 08' } AUTHORS
wrc was written by Bertho A. Stultiens and is a nearly complete rewrite of the first wine resource compiler (1994) by Martin von Loewis. Additional resource-types were contributed Ulrich Czekalla and Albert den Haan. Many cleanups by Dimitrie O. Paun in 2002-2003. Bugfixes have been contributed by many Wine developers. BUGS
- The preprocessor recognizes variable argument macros, but does not expanded them correctly. - Error reporting should be more precise, as currently the column and line number reported are those of the next token. - Default memory options should differ between win16 and win32. There is no support for: - RT_DLGINCLUDE, RT_VXD, RT_PLUGPLAY and RT_HTML (unknown format) - PUSHBOX control is unsupported due to lack of original functionality. Fonts are parsed and generated, but there is no support for the generation of the FONTDIR yet. The user must supply the FONTDIR resource in the source to match the FONT resources. AVAILABILITY
wrc is part of the Wine distribution, which is available through WineHQ, the Wine development headquarters, at http://www.winehq.org/. SEE ALSO
wine(1) Wine 1.2-rc6 October 2005 WRC(1)
All times are GMT -4. The time now is 02:59 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy