Redian新闻
>
Job openning (CMOS technology interfacing) near San Diego,
avatar
Job openning (CMOS technology interfacing) near San Diego,# EE - 电子工程
l*i
1
当年明清时候,像《金瓶梅》这样的疑似黄色小说是被封杀禁看的,而《红楼梦》和《
水浒传》并没有被封杀,还有好多个版本流程,在民间相当活跃,也才可以流传至今。
有趣的是,我觉得当时的政府没有封杀这两部小说,完全是被这两部小说蒙蔽了,我越
想这小说里的内容越想笑。
《红楼梦》和《水浒传》说到底都是悲剧性的作品,红楼梦里的很多女人都死掉了,林
黛玉死掉了,贾宝玉最后信了佛,其最后的结果并没有直接触犯到当时统治阶级的利益
,并没有明显的反对封建专制的痕迹;而实际上,曹雪芹在里面表达了自己对封建等级
制度的极度愤怒情感和无奈情感,统治阶级居然因为这书的表面结果而没有体察到这才
是一部真正的反动书籍,它很可能引起民愤。《水浒传》更有意思,其结果是宋江归顺
朝廷,统治阶级看了这书说“哦,这书好,说明咱大宋政府的魅力还比较大,最终把宋
江等梁山好汉都收附了,这书应该赞赏”;殊不知,这小说的真正含义是在表达一种被
封建专制统治的悲哀情绪,也是一种反政府的书。两部极力反对封建专制的书却得到了
当局的肯定,这当局的智商实在够高。
avatar
F*i
2
Daxia,
one question, which lib has the mmap function? Is it libc or from kernel?
thanks!
avatar
d*l
3
有意者请站内信件联系,谢谢!
另由于H1B今年Quota用完,今年不support H1B了。但有opt的可以明年办。
Entry to Senior level:
Candidates need to have good understanding of semiconductor fundamentals in
a wide sense, flexible/creative way of thinking, good teamwork &
communication skill, and energy & passion as our team member. Fresh grads
is also ok.
avatar
n*x
4
中国历史上的各个朝代禁书的很少。金瓶梅成为禁书并不是政府不许看。而是内容粗俗
,大人不准小孩子看,大人看了也不便于讨论,只是是文化范畴的禁忌。相反,中国汉
朝起就设有史官,史官的权威很高,史官的记录,皇帝也不能更改。
水浒红楼更没有被禁的理由。水浒写的是宋朝末,明清没有理由禁。红楼更是不干涉时
政。

【在 l***i 的大作中提到】
: 当年明清时候,像《金瓶梅》这样的疑似黄色小说是被封杀禁看的,而《红楼梦》和《
: 水浒传》并没有被封杀,还有好多个版本流程,在民间相当活跃,也才可以流传至今。
: 有趣的是,我觉得当时的政府没有封杀这两部小说,完全是被这两部小说蒙蔽了,我越
: 想这小说里的内容越想笑。
: 《红楼梦》和《水浒传》说到底都是悲剧性的作品,红楼梦里的很多女人都死掉了,林
: 黛玉死掉了,贾宝玉最后信了佛,其最后的结果并没有直接触犯到当时统治阶级的利益
: ,并没有明显的反对封建专制的痕迹;而实际上,曹雪芹在里面表达了自己对封建等级
: 制度的极度愤怒情感和无奈情感,统治阶级居然因为这书的表面结果而没有体察到这才
: 是一部真正的反动书籍,它很可能引起民愤。《水浒传》更有意思,其结果是宋江归顺
: 朝廷,统治阶级看了这书说“哦,这书好,说明咱大宋政府的魅力还比较大,最终把宋

avatar
S*A
5
libc has mmap system call wrappers.
kernel has the real function to do the mmap.

【在 F*******i 的大作中提到】
: Daxia,
: one question, which lib has the mmap function? Is it libc or from kernel?
: thanks!

avatar
s*3
6
what types of interfacing ? circuit & device, testing, fabrication ?
Thanks!
avatar
F*i
7
man, really appreciate the insights!

【在 S*A 的大作中提到】
: libc has mmap system call wrappers.
: kernel has the real function to do the mmap.

avatar
d*l
8
circuit & device/process, e.g.: developing PDKs for RF applications.

【在 s*****3 的大作中提到】
: what types of interfacing ? circuit & device, testing, fabrication ?
: Thanks!

avatar
F*i
9
one more question SSA.
If i have a program use mmap, will the kernel static linked to my program
or dynmamic linked for mmap?
thanks again!

【在 S*A 的大作中提到】
: libc has mmap system call wrappers.
: kernel has the real function to do the mmap.

avatar
j*a
10
this question is invalid.

【在 F*******i 的大作中提到】
: one more question SSA.
: If i have a program use mmap, will the kernel static linked to my program
: or dynmamic linked for mmap?
: thanks again!

avatar
F*i
11
so suppose i compile a A program in kernel KA, and run it in kernel KB,
it will use the mmap implementation from KB?
thanks again

【在 j*a 的大作中提到】
: this question is invalid.
avatar
j*a
12
true.
A - glibc - K

【在 F*******i 的大作中提到】
: so suppose i compile a A program in kernel KA, and run it in kernel KB,
: it will use the mmap implementation from KB?
: thanks again

avatar
F*i
13
thanks a lot

【在 j*a 的大作中提到】
: true.
: A - glibc - K

avatar
S*A
14
Yes, it will use the mmap in KB.
Mmap system call, like every other system call, it is just an INT 80h
with some register value set as arguments. It is pretty much like
BIOS call except that is the kernel receiving it. Glibc might use
syscall instruction instead of the INT 80h. But it is really the same.

【在 F*******i 的大作中提到】
: so suppose i compile a A program in kernel KA, and run it in kernel KB,
: it will use the mmap implementation from KB?
: thanks again

avatar
F*i
15
thanks!

【在 S*A 的大作中提到】
: Yes, it will use the mmap in KB.
: Mmap system call, like every other system call, it is just an INT 80h
: with some register value set as arguments. It is pretty much like
: BIOS call except that is the kernel receiving it. Glibc might use
: syscall instruction instead of the INT 80h. But it is really the same.

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。